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