]> Witch of Git - web/blog/blob - _includes/layouts/layout.njk
Make webrings sort by title
[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>{{ title }}</title>
8 <meta property="og:title" content="{{ title }}">
9 <meta property="twitter:title" content="{{ 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 <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
37 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
38 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
39 <link rel="manifest" href="/site.webmanifest">
40 <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#f78123">
41 <meta name="msapplication-TileColor" content="#da532c">
42 <meta name="theme-color" content="#ffffff">
43 {% set css %}{% include "style.css" %}{% endset %}
44 <style>{{ css | cssmin | safe }}</style>
45 </head>
46 <body class="col">
47 <header>
48 <div class="row fwrap baseline">
49 <h1 class="rigid spacer">
50 <a class="c-sun dec-none" href="/">Witch of Light</a>
51 </h1>
52 <div class="row" style="margin-top: -0.6em">
53 <a class="c-sun" href="/webrings">Webrings</a>
54 &nbsp;&nbsp;
55 <a class="c-sun" href="/archive">Archive</a>
56 &nbsp;&nbsp;
57 <a class="c-sun" href="/feed.xml">RSS</a>
58 </div>
59 </div>
60 <i class="dim">A collection of Cassie's harebrained schemes.</i>
61 </header>
62 <main>
63 {{ content | safe }}
64 </main>
65 <div class="spacer"></div>
66 <footer class="col hcenter">
67 Copyright &copy; 2020 Cassie Jones.
68 <div class="row hcenter">
69 <a class="hov-fade" href="https://twitter.com/porglezomp"><img class="im-icon" src="/static/twitter.svg" alt="Twitter"></a>
70 <div class="block-1"></div>
71 <a class="hov-fade" href="https://github.com/porglezomp"><img class="im-icon" src="/static/github.svg" alt="GitHub"></a>
72 </div>
73 </footer>
74 <link rel="stylesheet" type="text/css" href="/static/prism.css">
75 </body>
76 </html>