A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 _layout.html

View raw Download
text/html • 3.26 kiB
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 and Mirrors</a></li>
44
<li><a href="https://steve0greatness.github.io/extras">Extras</a></li>
45
</ol>
46
</div>
47
<div class="footer-link-list-holder" role="group">
48
<span
49
aria-hidden="true"
50
id="footer-label-social-accounts"
51
class="footer-link-list-label"
52
>Social Accounts</span>
53
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
54
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
55
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
56
<li><a href="/list/link-tree.html">More...</a></li>
57
</ol>
58
</div>
59
<div class="footer-link-list-holder" role="group">
60
<span
61
aria-hidden="true"
62
id="footer-label-button"
63
class="footer-link-list-label"
64
>Button(hotlink it)</span>
65
<div class="footer-link-list" aria-labelledby="footer-label-button">
66
<a href="https://steve0greatness.nekoweb.org">
67
<img
68
src="/button.webp"
69
title="Steve0Greatness"
70
alt="Steve0Greatness"
71
width="88"
72
height="31"
73
style="image-rendering: pixelated"
74
/>
75
</a>
76
<textarea class="button-hotlink" readonly="readonly"><a href="https://steve0greatness.nekoweb.org">
77
<img
78
src="https://steve0greatness.nekoweb.org/button.webp"
79
title="Steve0Greatness"
80
alt="Steve0Greatness"
81
width="88"
82
height="31"
83
style="image-rendering: pixelated"
84
/>
85
</a></textarea>
86
</div>
87
</div>
88
</footer>
89
</body>
90
91
</html>
92