]> Witch of Git - web/blog/blob - _includes/layouts/layout.njk
Polishing
[web/blog] / _includes / layouts / layout.njk
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf8">
5 <title>Witch of Light</title>
6 <style>
7 html { font-size: 1.4em; line-height: 1.5; color: #444; }
8 body { padding: 1em; max-width: 700px; margin: 0 auto; }
9 body header { margin-bottom: 1em; }
10 body footer { margin-top: 1em; }
11 h1 { margin: 0; }
12 h1, h2, h3, h4, h5, h6 { margin-bottom: 0; }
13 .c-sun { color: #f78123; }
14 .dec-none { text-decoration: none; }
15 .dim { color: #777; }
16 .flex-center { justify-content: center; }
17 .row { display: flex; flex-direction: row; }
18 .col { display: flex; flex-direction: column; }
19 .baseline { align-items: baseline; }
20 .spacer { flex-grow: 1; }
21 .ls-none { list-style: none; padding: 0; margin: 0; }
22 </style>
23 <link rel="stylesheet" type="text/css" href="/static/prism.css">
24 </head>
25 <body class="col">
26 <header>
27 <div class="row baseline">
28 <h1><a class="c-sun dec-none" href="/">Witch of Light</a></h1>
29 <div class="spacer"></div>
30 <a class="c-sun" href="/archive">Archive</a>
31 &nbsp; &nbsp;
32 <a class="c-sun" href="/feed.xml">RSS</a>
33 </div>
34 <i class="dim">A collection of Cassie's harebrained schemes.</i>
35 </header>
36 {{ content | safe }}
37 <div class="spacer"></div>
38 <footer>
39 Copyright &copy; 2019 Cassie Jones.
40 - <a href="https://twitter.com/porglezomp">@porglezomp</a>
41 </footer>
42 </body>
43 </html>