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