all repos — site @ 86300ce706d303134d333477f787cb48d826bf4e

source for my site, found at icyphox.sh

templates/index.html (view raw)

 1<html lang=en>
 2  <head>
 3    {{ template "head.html" }}
 4  </head>
 5  <title>
 6    {{ index .Meta "title" }}
 7  </title>
 8  <body>
 9    <main>
10     <header>
11        {{ template "nav.html" }}
12      </header>
13      <article class="tagline">
14        {{ .Body }}
15      </article>
16    </main>
17    <footer>
18      {{ template "footer.html" }}
19    </footer>
20  </body>
21</html>