all repos — site @ 84ad6ce6e46aa9794f891808012fa0d2dd490866

source for my site, found at icyphox.sh

templates/index.html (view raw)

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