2018-01-08 17:28:39 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ .Site.LanguageCode }}">
|
2020-07-20 16:16:12 +02:00
|
|
|
|
|
|
|
<head>
|
2019-03-31 14:32:06 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Title -->
|
2020-03-09 18:50:02 +01:00
|
|
|
<title>{{ if .Title }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
|
2019-03-31 14:32:06 +02:00
|
|
|
<!-- Meta -->
|
|
|
|
{{- if eq .Kind "page" }}
|
|
|
|
<meta name="description" content="{{ .Summary }}">
|
|
|
|
<meta name="author" content="{{ .Params.author | default .Site.Params.author }}">
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- else }}
|
2019-03-31 14:32:06 +02:00
|
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
|
|
<meta name="author" content="{{ .Site.Params.author }}">
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- end }}
|
2019-03-31 14:32:06 +02:00
|
|
|
<!-- Styles -->
|
2020-07-20 15:47:39 +02:00
|
|
|
{{ $anoldhope := resources.Get "an-old-hope.min.css" | minify }}
|
|
|
|
{{ $style := resources.Get "style.css" | minify }}
|
|
|
|
{{ $stylesheet := slice $anoldhope $style | resources.Concat "stylesheet.css" | minify }}
|
|
|
|
<link href="{{ $stylesheet.Permalink }}" rel="stylesheet">
|
2020-03-05 05:30:42 +01:00
|
|
|
<link href="{{ "custom.css" | absURL }}" rel="stylesheet">
|
2019-03-31 14:32:06 +02:00
|
|
|
<!-- Favicons -->
|
2019-08-19 22:12:49 +02:00
|
|
|
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | absURL }}">
|
|
|
|
<link rel="icon" href="{{ "favicon.ico" | absURL }}">
|
2019-03-31 14:32:06 +02:00
|
|
|
<!-- Generator -->
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- hugo.Generator }}
|
2019-03-31 14:32:06 +02:00
|
|
|
<!-- RSS -->
|
2020-05-25 07:42:32 +02:00
|
|
|
{{ range .AlternativeOutputFormats -}}
|
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
|
|
{{ end -}}
|
2019-06-10 21:29:55 +02:00
|
|
|
<!-- Misc -->
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
|
|
|
|
{{- template "_internal/google_analytics_async.html" . }}
|
|
|
|
{{- template "_internal/opengraph.html" . }}
|
|
|
|
{{- end }}
|
2019-10-15 22:15:16 +02:00
|
|
|
<!-- Script -->
|
2020-07-20 16:16:12 +02:00
|
|
|
{{ $settheme := resources.Get "set-theme.js" | minify }}
|
|
|
|
<script src="{{ $settheme.Permalink }}"></script>
|
|
|
|
</head>
|
2019-10-16 21:02:35 +02:00
|
|
|
|
2020-07-20 16:16:12 +02:00
|
|
|
<body class="{{ if eq .Kind `page` }}single{{ else }}list{{ if .IsHome }} home{{ end }}{{ end }}">
|
2019-10-15 22:15:16 +02:00
|
|
|
<script>
|
2020-07-20 16:16:12 +02:00
|
|
|
setTheme();
|
2019-10-15 22:15:16 +02:00
|
|
|
</script>
|
2019-03-31 14:32:06 +02:00
|
|
|
<header class="header">
|
2020-07-20 16:16:12 +02:00
|
|
|
<nav class="nav">
|
|
|
|
{{- if .IsHome }}
|
|
|
|
<h1 class="logo"><a href="{{ "" | absURL }}">{{ .Site.Title }}</a></h1>
|
|
|
|
{{- else }}
|
|
|
|
<p class="logo"><a href="{{ "" | absURL }}">{{ .Site.Title }}</a></p>
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Site.Menus.main }}
|
|
|
|
<ul class="menu">
|
|
|
|
{{- range .Site.Menus.main }}
|
|
|
|
<li>
|
|
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
|
|
</li>
|
|
|
|
{{- end }}
|
|
|
|
</ul>
|
|
|
|
{{- end }}
|
|
|
|
</nav>
|
2019-03-31 14:32:06 +02:00
|
|
|
</header>
|
2020-07-20 16:16:12 +02:00
|
|
|
<main class="main">
|