_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
<link rel="stylesheet" href="/src/marquee.css" defer="defer" />
20
<meta property="og:locale" content="en_US" />
21
<meta property="og:site_name" content="Steve0Greatness" />
22
<meta property="og:image" content="/OG-Image.png" />
23
{% endblock %}
24
</head>
25
26
<body>
27
<header>
28
<h2><a href="/"><img src="/SteveLogo.webp" height="35" width="215" alt="Steve0Greatness" /></a></h2>
29
<nav>
30
<a href="/blog">Blog</a>
31
<a href="/list/link-tree.html">Link Tree</a>
32
</nav>
33
</header>
34
{% block breadcrumbs %}{% endblock %}
35
<main>{% block content %}{% endblock %}</main>
36
<footer>
37
<div class="footer-link-list-holder" role="group">
38
<span
39
aria-hidden="true"
40
id="footer-label-site-details"
41
class="footer-link-list-label"
42
>Site Meta</span>
43
<ol class="footer-link-list" aria-labelledby="footer-label-site-details">
44
<li><a href="/list/website-sources-mirrors.html">Source Code</a></li>
45
<li><a href="https://steve0greatness.github.io/extras">Extras</a></li>
46
<li><a href="https://steve0greatness.atabook.org/">Guestbook</a></li>
47
</ol>
48
</div>
49
<div class="footer-link-list-holder" role="group">
50
<span
51
aria-hidden="true"
52
id="footer-label-social-accounts"
53
class="footer-link-list-label"
54
>Profiles</span>
55
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
56
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
57
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
58
<li><a href="/list/link-tree.html">Link-Tree</a></li>
59
</ol>
60
</div>
61
<div class="footer-link-list-holder" role="group">
62
<span
63
aria-hidden="true"
64
id="footer-label-button"
65
class="footer-link-list-label"
66
>Button</span>
67
<div class="footer-link-list" aria-labelledby="footer-label-button">
68
<a href="https://steve0greatness.nekoweb.org">
69
<img
70
src="/button.webp"
71
title="Steve0Greatness"
72
alt="Steve0Greatness"
73
width="88"
74
height="31"
75
style="image-rendering: pixelated"
76
/>
77
</a>
78
<textarea
79
class="button-hotlink"
80
readonly="readonly"
81
placeholder="button hotlink"
82
name="button-hotlink"
83
><a href="https://steve0greatness.nekoweb.org">
84
<img
85
src="https://steve0greatness.nekoweb.org/button.webp"
86
title="Steve0Greatness"
87
alt="Steve0Greatness"
88
width="88"
89
height="31"
90
style="image-rendering: pixelated"
91
/>
92
</a></textarea>
93
</div>
94
</div>
95
</footer>
96
</body>
97
98
</html>
99