aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 894b065b19b2f26ce872a33a379c802c208fd634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <title>{{ .Title }}</title>
    <link rel="icon" type="image/png" href="/avatar.png">
    {{ $style := resources.Get "main.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
    <link rel="stylesheet" href="{{ $style.RelPermalink }}"/>
  </head>
  <body>
    {{ partial "nav.html" . }}
    <main>
      {{ .Content }}
    </main>
    {{ partial "footer.html" . }}
  </body>
</html>