aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 863d6cc3f346bba545f9eb336b33b547d2716c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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>
      <h2>{{ .Title }}</h2>
      {{ .Content }}
    </main>
  </body>
  <footer>
    Site content is <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA-4.0</a>.
    Software projects are <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU GPLv3</a>.
  </footer>
</html>