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 h2 {
8 margin-bottom: 1px;
9 }
10 h3 {
11 margin-top: 0px;
12 padding-top: 2px;
13 font-size: 0.9rem;
14 color: var(--gray);
15 }
16 </style>
17 </head>
18 <title>
19 {{ index .Meta "title" }} — {{ .Cfg.Title }}
20 </title>
21 <body>
22 <main>
23 <div class="sidenav">
24 {{ template "partials/nav.html" }}
25 </div>
26 <article align="left">
27 <h1>{{ index .Meta "title" }}</h1>
28 {{ .Body }}
29 </article>
30 </main>
31 <footer>
32 {{ template "partials/footer.html" }}
33 </footer>
34</body>
35
36</html>