]> Witch of Git - web/blog/blob - _includes/layouts/layout.njk
Add more footer links
[web/blog] / _includes / layouts / layout.njk
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf8">
5 <meta property="og:type" content="website">
6 {% if title %}
7 <title>Witch of Light - {{ title }}</title>
8 <meta property="og:title" content="Witch of Light - {{ title }}">
9 <meta property="twitter:title" content="Witch of Light - {{ title }}">
10 {% else %}
11 <title>Witch of Light</title>
12 <meta property="og:title" content="Witch of Light">
13 <meta property="twitter:title" content="Witch of Light">
14 {% endif %}
15 {% if summary %}
16 <meta name="description" content="{{ summary }}">
17 <meta property="og:description" content="{{ summary }}">
18 <meta property="twitter:description" content="{{ summary }}">
19 {% else %}
20 <meta name="description" content="A collection of Cassie's harebrained schemes">
21 <meta property="og:description" content="A collection of Cassie's harebrained schemes">
22 <meta property="twitter:description" content="A collection of Cassie's harebrained schemes">
23 {% endif %}
24 <meta property="og:url" content="https://blog.witchoflight.com">
25 <meta property="og:site_name" content="Witch of Light">
26 <meta property="og:image" content="https://www.witchoflight.com/assets/light.jpg">
27 <meta property="og:image:type" content="image/png">
28 <meta property="og:image:width" content="900">
29 <meta property="og:image:height" content="900">
30 <meta property="og:image:alt" content="The Homestuck light aspect icon">
31 <meta name="twitter:card" content="summary">
32 <meta name="twitter:site" content="@porglezomp">
33 <meta name="twitter:creator" content="@porglezomp">
34 <meta name="twitter:image" content="https://www.witchoflight.com/assets/light.png">
35 <meta name="viewport" content="width=device-width, initial-scale=1.0">
36 {% set css %}{% include "style.css" %}{% endset %}
37 <style>{{ css | cssmin | safe }}</style>
38 </head>
39 <body class="col">
40 <header>
41 <div class="hgroup baseline">
42 <h1><a class="c-sun dec-none" href="/">Witch of Light</a></h1>
43 <div class="spacer"></div>
44 <div class="row" style="margin-top: -0.6em">
45 <a class="c-sun" href="/archive">Archive</a>
46 &nbsp;&nbsp;
47 <a class="c-sun" href="/feed.xml">RSS</a>
48 </div>
49 </div>
50 <i class="dim">A collection of Cassie's harebrained schemes.</i>
51 </header>
52 <main>
53 {{ content | safe }}
54 </main>
55 <div class="spacer"></div>
56 <footer class="col hcenter">
57 Copyright &copy; 2019 Cassie Jones.
58 <div class="row hcenter">
59 <a class="hov-fade" href="https://twitter.com/porglezomp"><img class="im-icon" src="/static/twitter.svg" alt="Twitter"></a>
60 <div class="block-1"></div>
61 <a class="hov-fade" href="https://github.com/porglezomp"><img class="im-icon" src="/static/github.svg" alt="GitHub"></a>
62 </div>
63 </footer>
64 <link rel="stylesheet" type="text/css" href="/static/prism.css">
65 </body>
66 </html>