blob: 61f43bf03731ea8f532237bce707100fef1a6dc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="referrer" content="no-referrer" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="{{ description | escape }}" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@boring_cactus" />
<meta name="twitter:title" content="{{ title | escape }}" />
<meta name="twitter:description" content="{{ description | escape }}" />
<meta property="og:url" content="https://www.boringcactus.com{{ page.url }}" />
<meta property="og:title" content="{{ title | escape }}" />
<meta property="og:description" content="{{ description | escape }}" />
{% if page.url == "/" %}
<meta property="og:type" content="website" />
<title>{{ title }}</title>
{% else %}
<meta property="og:type" content="article" />
<meta property="article:published_time" content="{% if showDate %}{{ page.date | date: '%Y-%m-%d', 'Etc/UTC' }}{% endif %}" />
<title>{{ title }} | boringcactus</title>
{% endif %}
<link rel="stylesheet" href="/assets/site.css">
<link type="application/atom+xml" rel="alternate" href="/feed.xml" title="boringcactus" />
<link rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/" />
<link rel="icon" href="/assets/icon.svg">
<script async defer data-domain="boringcactus.com" src="https://plausible.io/js/plausible.js"></script>
</head>
<body>
<header>
{% if page.url != "/" %}
<p>(brought to you by <a href="/">boringcactus</a>)</p>
{% endif %}
</header>
<main>
<h1>{{ title }}{% if showDate %} <small>({{ page.date | date: "%d %b %Y", 'Etc/UTC' }})</small>{% endif %}</h1>
{{ content }}
</main>
<script src="/assets/site.js"></script>
</body>
</html>
|