blob: c6e0e3be8fc4e22b8a33bf0cef9eaeeb365e6dd9 (
plain) (
blame)
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
30
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
{{ $style := resources.Get "style.css" | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
</head>
<body>
<aside id="sidebar">
<p style="text-align: center; font-weight: bold;">
<a href="/">{{ .Site.Title }}</a>
</p>
{{ partial "recursive_nav.html" (dict "currentPage" . "pages" .Site.Sections) }}
</aside>
<div id="main-and-footer">
<main>
{{ block "main" . }}
{{ end }}
</main>
<footer>
{{ block "footer" . }}
{{ end }}
</footer>
</div>
</body>
</html>
|