-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.html.template
84 lines (69 loc) · 3 KB
/
site.html.template
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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>so.dang.cool :: {{ title }}</title>
<meta charset='utf-8'>
<link rel='stylesheet' href='/style.css'>
<meta property='og:title' content='{{ title }}'>
<meta property='og:image' content='https://so.dang.cool/preview.png'>
<meta property='og:image:type' content='image/png'>
<meta property='og:image:width' content='1024'>
<meta property='og:image:height' content='512'>
<!-- Thanks to https://favicomatic.com -->
<link rel='icon' type='image/png' href='https://so.dang.cool/favicon-196x196.png' sizes='196x196'>
<link rel='icon' type='image/png' href='https://so.dang.cool/favicon-32x32.png' sizes='32x32'>
<link rel='icon' type='image/png' href='https://so.dang.cool/favicon-16x16.png' sizes='16x16'>
<link rel='icon' type='image/png' href='https://so.dang.cool/favicon-128.png' sizes='128x128'>
<!-- 'Playfair Display' Font: https://fonts.google.com/specimen/Playfair+Display?category=Serif&sort=popularity -->
<link rel='preconnect' href='https://fonts.googleapis.com'>
<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin>
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap'>
</head>
<body>
<div id='strip'>
<header class='center'>
<div>
<pre id='sdc'>
░█▀▀░█▀█░░░░█▀▄░█▀█░█▀█░█▀▀░░░░█▀▀░█▀█░█▀█░█░░
░▀▀█░█░█░░░░█░█░█▀█░█░█░█░█░░░░█░░░█░█░█░█░█░░
░▀▀▀░▀▀▀░▀░░▀▀░░▀░▀░▀░▀░▀▀▀░▀░░▀▀▀░▀▀▀░▀▀▀░▀▀▀
</pre>
</div>
<h1>{{ title }}</h1>
</header>
<hr>
<main>
<!-- BEGIN MAIN -->
{{ main }}
<!-- END MAIN -->
</main>
<hr>
<footer class='center'>
<p>
2024, J.R. Hill
</p>
<p>
<a href='https://so.dang.cool/'>Home</a> |
<a href='https://so.dang.cool/blog/'>Blog</a> |
<a href='https://so.dang.cool/blog/feed.xml'>Feed</a>
</p>
<p><em>
Generated with <a href='https://dt.plumbing'>dt</a>
(<a href='https://github.com/so-dang-cool/so.dang.cool'>source</a>)
</em></p>
<a href='https://notbyai.fyi'>
<img alt='Produced by humans, not by AI' src='/img/not-by-ai.svg'>
</a>
<p>
<a href='https://github.com/booniepepper'>github</a> |
<a href='https://gitlab.com/booniepepper'>gitlab</a> |
<a href='https://linkedin.com/in/justinroberthill'>linkedin</a> |
<a href='https://booniepepper.itch.io'>itch.io</a> |
<a href='https://www.codewars.com/users/booniepepper'>codewars</a> |
<a href='https://www.deviantart.com/jrhill/gallery'>deviant art</a> |
<a href='https://www.spoonflower.com/profiles/booniepepper'>spoonflower</a>
</p>
</footer>
</div>
</body>
</html>