aboutsummaryrefslogtreecommitdiff
path: root/layouts/blog/single.html
blob: 5c91492904859a40279df56cbdaef4c4af2e08b1 (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
<!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 }}
        <small>
          {{ .Date.Format "January 2, 2006" }}
        </small>
      </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>