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