_layout.html
HTML document, ASCII text
1
<!DOCTYPE html>
2
<html lang="en-us" prefix="og: https://ogp.me/ns# article: http://ogp.me/ns/article# profile: https://ogp.me/ns/profile#">
3
4
<head>
5
{% block Head %}
6
<meta charset="UTF-8" />
7
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
<title>{% block title %}{% endblock %} - S0G</title>
9
<style>
10
body {
11
background: black;
12
color: white;
13
}
14
:any-link {
15
color: red;
16
}
17
</style>
18
<link rel="stylesheet" href="/src/global.css" />
19
<meta property="og:locale" content="en_US" />
20
<meta property="og:site_name" content="Steve0Greatness" />
21
<meta property="og:image" content="/OG-Image.png" />
22
{% endblock %}
23
</head>
24
25
<body>
26
<header>
27
<h2><a href="/"><img src="/SteveLogo.webp" height="35" width="215" alt="Steve0Greatness" /></a></h2>
28
<nav>
29
<a href="/blog">Blog</a>
30
<a href="/list/link-tree.html">Link Tree</a>
31
</nav>
32
</header>
33
{% block breadcrumbs %}{% endblock %}
34
<main>{% block content %}{% endblock %}</main>
35
<footer>
36
<div class="footer-link-list-holder" role="group">
37
<span
38
aria-hidden="true"
39
id="footer-label-site-details"
40
class="footer-link-list-label"
41
>Site Meta</span>
42
<ol class="footer-link-list" aria-labelledby="footer-label-site-details">
43
<li><a href="/list/website-sources-mirrors.html">Source Code</a></li>
44
<li><a href="https://steve0greatness.github.io/extras">Extras</a></li>
45
<li><a href="https://steve0greatness.atabook.org/">Guestbook</a></li>
46
</ol>
47
</div>
48
<div class="footer-link-list-holder" role="group">
49
<span
50
aria-hidden="true"
51
id="footer-label-social-accounts"
52
class="footer-link-list-label"
53
>Profiles</span>
54
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
55
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
56
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
57
<li><a href="/list/link-tree.html">Link-Tree</a></li>
58
</ol>
59
</div>
60
<div class="footer-link-list-holder" role="group">
61
<span
62
aria-hidden="true"
63
id="footer-label-button"
64
class="footer-link-list-label"
65
>Button</span>
66
<div class="footer-link-list" aria-labelledby="footer-label-button">
67
<a href="https://steve0greatness.nekoweb.org">
68
<img
69
src="/button.webp"
70
title="Steve0Greatness"
71
alt="Steve0Greatness"
72
width="88"
73
height="31"
74
style="image-rendering: pixelated"
75
/>
76
</a>
77
<textarea
78
class="button-hotlink"
79
readonly="readonly"
80
placeholder="button hotlink"
81
name="button-hotlink"
82
><a href="https://steve0greatness.nekoweb.org">
83
<img
84
src="https://steve0greatness.nekoweb.org/button.webp"
85
title="Steve0Greatness"
86
alt="Steve0Greatness"
87
width="88"
88
height="31"
89
style="image-rendering: pixelated"
90
/>
91
</a></textarea>
92
</div>
93
</div>
94
</footer>
95
</body>
96
97
</html>
98