-
Notifications
You must be signed in to change notification settings - Fork 0
/
_opengraph.html
73 lines (63 loc) · 2.59 KB
/
_opengraph.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
pagination:
data: websites
size: 1
alias: website
permalink: '/opengraph/{{ website.date }}/index.html'
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Strange.Website</title>
<meta name="description"
content="Well now, seems you've found a strange and perhaps surprising website, indeed. As with all things, take and enjoy your time — after all, no one may but you." />
<link rel="preload" href="/fonts/ms-sans.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="/fonts/Redaction_35-Regular.woff2" as="font" type="font/woff2" crossorigin />
<link rel="stylesheet" href="/css/style.css" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:type" content="image/jpg" />
<meta name="og:image" content="https://strange.website/meta/og.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@404boyfriend" />
<meta name="twitter:title" content="Quite A Strange.Website Indeed" />
<meta name="twitter:image" content="https://strange.website/meta/og.jpg" />
<meta name="twitter:description"
content="Well now, seems you've found a strange and perhaps surprising website, indeed. As with all things, take and enjoy your time — after all, no one may but you." />
<link rel="apple-touch-icon" sizes="120x120" href="/meta/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/meta/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/meta/favicon-16x16.png" />
<link rel="manifest" href="/meta/site.webmanifest" />
<link rel="mask-icon" href="/meta/safari-pinned-tab.svg" color="#c0c0c0" />
<meta name="msapplication-TileColor" content="#c0c0c0" />
<meta name="theme-color" content="#ffffff" />
<meta name="robots" content="noindex" />
<style>
main {
max-width: 60rem;
}
.website {
font-size: 2rem;
}
</style>
</head>
<body>
<main>
{% include "header.njk" %}
<div class="app-inner">
<article class="website" id="{{ website.date | replace('-', '') }}">
<h2 class="website__title">
<a href="#{{ website.date | replace('-', '') }}"><time>{{ website.date }}</time></a>
</h2>
<p class="website__body">
{{ website.body | website | nl2br | safe }}
</p>
</article>
</div>
{% include 'footer.njk' %}
</main>
</body>
</html>