all repos — site @ eae4654382d3554f7e39d6a5d5bcc0ac3e2ca62e

source for my site, found at icyphox.sh

templates/main.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-noimg.html" }}
12      </header>
13      <article>
14        <div class="logo">
15          <img src=/static/white.svg>
16        </div>
17      </article>
18    </main>
19    <footer>
20      {{ template "footer.html" }}
21    </footer>
22  </body>
23</html>