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