_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
html {
11
color-scheme: dark;
12
}
13
</style>
14
<meta property="og:locale" content="en_US" />
15
<meta property="og:site_name" content="Steve0Greatness" />
16
<meta property="og:image" content="/OG-Image.png" />
17
{% endblock %}
18
</head>
19
20
<body>
21
<header>
22
<h2><a href="/"><img src="/SteveLogo.webp" height="35" width="215" alt="Steve0Greatness" /></a></h2>
23
<nav>
24
<a href="/blog">Blog</a>
25
<a href="/list/link-tree.html">Link Tree</a>
26
</nav>
27
</header>
28
{% block breadcrumbs %}{% endblock %}
29
<main>{% block content %}{% endblock %}</main>
30
<footer>
31
<div class="footer-link-list-holder" role="group">
32
<span
33
aria-hidden="true"
34
id="footer-label-site-details"
35
class="footer-link-list-label"
36
>Site Meta</span>
37
<ol class="footer-link-list" aria-labelledby="footer-label-site-details">
38
<li><a href="/list/website-sources-mirrors.html">Source Code</a></li>
39
<li><a href="/extras.html">Extras</a></li>
40
<li><a href="/guestbook.html">Guestbook</a></li>
41
<li>
42
<details class="inline-details">
43
<summary>Compile Info</summary>
44
<table>
45
<tbody>
46
<tr>
47
<th>Site Start</th>
48
<td>{{SiteCompileTime}}</td>
49
</tr>
50
<tr>
51
<th>Page Start</th>
52
<td>{{CompileTime}}</td>
53
</tr>
54
<tr>
55
<th>View Name</th>
56
<td>{{ViewName}}</td>
57
</tr>
58
</tbody>
59
</table>
60
</details>
61
</li>
62
</ol>
63
</div>
64
<div class="footer-link-list-holder" role="group">
65
<span
66
aria-hidden="true"
67
id="footer-label-social-accounts"
68
class="footer-link-list-label"
69
>Profiles</span>
70
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
71
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
72
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
73
<li><a href="/list/link-tree.html">Link-Tree</a></li>
74
</ol>
75
</div>
76
<div class="footer-link-list-holder" role="group">
77
<span
78
aria-hidden="true"
79
id="footer-label-button"
80
class="footer-link-list-label"
81
>Button</span>
82
<div class="footer-link-list" aria-labelledby="footer-label-button">
83
<a href="https://steve0greatness.nekoweb.org">
84
<img
85
src="/button.webp"
86
title="Steve0Greatness"
87
alt="Steve0Greatness"
88
width="88"
89
height="31"
90
style="image-rendering: pixelated"
91
/>
92
</a>
93
<textarea
94
class="button-hotlink"
95
readonly="readonly"
96
placeholder="button hotlink"
97
name="button-hotlink"
98
><a href="https://steve0greatness.nekoweb.org">
99
<img
100
src="https://steve0greatness.nekoweb.org/button.webp"
101
title="Steve0Greatness"
102
alt="Steve0Greatness"
103
width="88"
104
height="31"
105
style="image-rendering: pixelated"
106
/>
107
</a></textarea>
108
</div>
109
</div>
110
</footer>
111
</body>
112
113
</html>
114