templates/photos.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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!doctype html>
<html lang=en>
<head>
{{ template "partials/head.html" }}
<meta name="description" content="{{ index .Meta "subtitle" }}">
<style>
h1 {
margin: 0px;
padding: 0px;
}
h2 {
padding-top: 2px;
margin-top: 3px !important;
margin-bottom: 5px;
color: var(--gray);
}
</style>
</head>
<title>
{{ index .Meta "title" }} — {{ .Cfg.Title }}
</title>
<body>
<main>
<div class="sidenav">
{{ template "partials/nav.html" }}
</div>
<article align="left">
<h1>{{ .Meta.title }} — {{ .Meta.season }}</h1>
<h2> {{ .Meta.camera }} · {{ .Meta.lens }} · {{ .Meta.film }} </h2>
{{ .Body }}
</article>
</main>
<footer>
{{ template "partials/footer.html" }}
</footer>
</body>
</html>
|