templates/photos.html (view raw)
1<!doctype html>
2<html lang=en>
3 <head>
4 {{ template "partials/head.html" }}
5 <meta name="description" content="{{ index .Meta "subtitle" }}">
6 <style>
7 h1 {
8 margin: 0px;
9 padding: 0px;
10 }
11 </style>
12 </head>
13 <title>
14 {{ .Meta.title }} ({{ .Meta.season }}) — {{ .Cfg.Title }}
15 </title>
16 <body>
17 <main>
18 <div class="sidenav">
19 {{ template "partials/nav.html" }}
20 </div>
21 <article align="left">
22 <h1>{{ .Meta.title }} — {{ .Meta.season }}</h1>
23 <h2 class="subtitle"> {{ .Meta.camera }} · {{ .Meta.lens }} · {{ .Meta.film }} </h2>
24 {{ .Body }}
25 </article>
26 </main>
27 <footer>
28 {{ template "partials/footer.html" }}
29 </footer>
30</body>
31
32</html>