blob: 33f813638166924193b97002156ff3962f56c20f (
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
|
<!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">
</aside>
<div id="main-and-footer">
<main>
{{ block "main" . }}
{{ end }}
</main>
<footer>
{{ block "footer" . }}
{{ end }}
</footer>
</div>
</body>
</html>
|