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>