-
Notifications
You must be signed in to change notification settings - Fork 0
/
_website.html
85 lines (80 loc) · 2.78 KB
/
_website.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
74
75
76
77
78
79
80
81
82
83
84
85
---
pagination:
data: websites
size: 1
alias: website
permalink: '/{{ website.date }}/index.html'
eleventyComputed:
encoded: 'https://strange.website/opengraph/{{ website.date }}'
og: https://screenshot.henry.codes/{{ ('https://strange.website/opengraph/' + website.date + '/') | encodeURIComponent }}/opengraph
---
<!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="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="{{ og }}" />
<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="{{ og }}" />
<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
http-equiv="refresh"
content="0;URL='https://strange.website/#{{ website.date | replace('-', '') }}'"
/>
<meta name="robots" content="noindex" />
</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>