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 23 |
<!doctype html> <html lang=en> <head> {{ template "partials/head.html" }} <meta name="description" content="{{ .Meta.subtitle }}"> </head> <title> {{ .Meta.title }} </title> <body> <main> <div class="sidenav"> {{ template "partials/nav.html" }} </div> <article class="tagline"> {{ .Body }} </article> </main> <footer> {{ template "partials/footer.html" }} </footer> </body> </html> |