blob: 1b34f992c773a68a9208d392588ce34dfb165e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/img/pfp.png">
{{ $notoSerif := resources.Get "css/noto-serif.css" | minify | fingerprint }}
<link rel="stylesheet" href="{{ $notoSerif.Permalink }}">
{{ $style := resources.Get "css/style.css" | minify | fingerprint }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
{{ with .OutputFormats.Get "rss" }}
{{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
{{ end }}
</head>
<body>
<nav>
{{ partial "nav.html" . }}
</nav>
<main>
{{ block "main" . }}
{{ .Content }}
{{ end }}
</main>
<footer>
{{ partial "footer.html" . }}
</footer>
</body>
</html>
|