|
@ -1,42 +1,12 @@ |
|
|
|
|
|
|
|
|
<head {{ with .Site.LanguageCode }}lang="{{ . }}"{{ end }}> |
|
|
<head {{ with .Site.LanguageCode }}lang="{{ . }}"{{ end }}> |
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" /> |
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> |
|
|
{{ with .Site.Params.description -}} |
|
|
{{ with .Site.Params.description -}} |
|
|
<meta name="description" content="{{ . }}"> |
|
|
<meta name="description" content="{{ . }}"> |
|
|
{{- end }} |
|
|
{{- end }} |
|
|
{{ .Hugo.Generator }} |
|
|
{{ .Hugo.Generator }} |
|
|
|
|
|
|
|
|
<title>{{ if not .IsHome }}{{ .Title }} —{{ end }} {{ .Site.Title }}</title> |
|
|
<title>{{ if not .IsHome }}{{ .Title }} —{{ end }} {{ .Site.Title }}</title> |
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/vendor/purecss/pure-min.css" type="text/css" /> |
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/vendor/purecss/pure-min.css" type="text/css" /> |
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/css/style.css" type="text/css" /> |
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/css/style.css" type="text/css" /> |
|
|
</head> |
|
|
</head> |
|
|
<nav> |
|
|
|
|
|
<div class="pure-menu pure-menu-horizontal"> |
|
|
|
|
|
<ul class="pure-menu-list float-left"> |
|
|
|
|
|
<li class="pure-menu-list"> |
|
|
|
|
|
<a href="{{ .Site.BaseURL }}" class="pure-menu-heading pure-menu-link" title="Home">{{ .Site.Title }}</a> |
|
|
|
|
|
</li> |
|
|
|
|
|
{{ range where (sort .Site.Pages "Weight" "desc") "Type" "navLink"}} |
|
|
|
|
|
<li class="pure-menu-list"><a href="{{ .URL }}" class="pure-menu-link" title="{{ .Title }}">{{ .Title }}</a></li> |
|
|
|
|
|
{{ end }} |
|
|
|
|
|
</ul> |
|
|
|
|
|
<ul class="pure-menu-list float-right"> |
|
|
|
|
|
{{ range sort .Site.Params.links "weight" "desc" }} |
|
|
|
|
|
<li class="pure-menu-list"> |
|
|
|
|
|
{{ if .image }} |
|
|
|
|
|
<a href="{{ .url }}" target="_blank" title="{{ .title }}"> |
|
|
|
|
|
<img src="{{ .image | absURL }}" /> |
|
|
|
|
|
</a> |
|
|
|
|
|
{{ else }} |
|
|
|
|
|
<a href="{{ .url }}" target="_blank" class="pure-menu-link" title="{{ .title }}"> |
|
|
|
|
|
{{ .title }} |
|
|
|
|
|
</a> |
|
|
|
|
|
{{ end }} |
|
|
|
|
|
</a> |
|
|
|
|
|
</li> |
|
|
|
|
|
{{ end }} |
|
|
|
|
|
</ul> |
|
|
|
|
|
</div> |
|
|
|
|
|
</nav> |
|
|
|
|
|
|
|
|
|