]> Witch of Git - web/blog/blob - _includes/layouts/layout.njk
Does this make twitter cards work again
[web/blog] / _includes / layouts / layout.njk
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf8">
5 {% if title %}
6 <title>{{ title }}</title>
7 <meta property="og:title" content="{{ title }}">
8 <meta property="twitter:title" content="{{ title }}">
9 {% else %}
10 <title>Witch of Light</title>
11 <meta property="og:title" content="Witch of Light">
12 <meta property="twitter:title" content="Witch of Light">
13 {% endif %}
14 {% if summary %}
15 <meta name="description" content="{{ summary }}">
16 <meta property="og:description" content="{{ summary }}">
17 <meta property="twitter:description" content="{{ summary }}">
18 {% else %}
19 <meta name="description" content="A collection of Cassie's harebrained schemes">
20 <meta property="og:description" content="A collection of Cassie's harebrained schemes">
21 <meta property="twitter:description" content="A collection of Cassie's harebrained schemes">
22 {% endif %}
23 <meta property="og:type" content="website">
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:image" content="https://www.witchoflight.com/assets/light.png">
34 <meta name="viewport" content="width=device-width, initial-scale=1.0">
35 <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
36 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
37 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
38 <link rel="manifest" href="/site.webmanifest">
39 <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#f78123">
40 <meta name="msapplication-TileColor" content="#da532c">
41 <meta name="theme-color" content="#ffffff">
42 {% set css %}{% include "style.css" %}{% endset %}
43 <style>{{ css | cssmin | safe }}</style>
44 </head>
45 <body class="col">
46 <header>
47 <div class="row fwrap baseline">
48 <h1 class="rigid spacer">
49 <a class="c-sun dec-none" href="/">Witch of Light</a>
50 </h1>
51 <div class="row" style="margin-top: -0.6em">
52 <a class="c-sun" href="/webrings">Webrings</a>
53 &nbsp;&nbsp;
54 <a class="c-sun" href="/archive">Archive</a>
55 &nbsp;&nbsp;
56 <a class="c-sun" href="/feed.xml">RSS</a>
57 </div>
58 </div>
59 <i class="dim">A collection of Cassie's harebrained schemes.</i>
60 </header>
61 <main>
62 {{ content | safe }}
63 </main>
64 <div class="spacer"></div>
65 <footer class="col hcenter">
66 Copyright &copy; 2019 Cassie Jones.
67 <div class="row hcenter">
68 <a class="hov-fade" href="https://twitter.com/porglezomp"><img class="im-icon" src="/static/twitter.svg" alt="Twitter"></a>
69 <div class="block-1"></div>
70 <a class="hov-fade" href="https://github.com/porglezomp"><img class="im-icon" src="/static/github.svg" alt="GitHub"></a>
71 </div>
72 </footer>
73 <link rel="stylesheet" type="text/css" href="/static/prism.css">
74 </body>
75 </html>