all repos — site @ eae4654382d3554f7e39d6a5d5bcc0ac3e2ca62e

source for my site, found at icyphox.sh

templates/main.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
 23
<html lang=en>
  <head>
    {{ template "head.html" }}
  </head>
  <title>
    {{ index .Meta "title" }}
  </title>
  <body>
    <main>
     <header>
        {{ template "nav-noimg.html" }}
      </header>
      <article>
        <div class="logo">
          <img src=/static/white.svg>
        </div>
      </article>
    </main>
    <footer>
      {{ template "footer.html" }}
    </footer>
  </body>
</html>