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 • 2.51 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 %}</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 role="group">
32
<strong>Navigation</strong>
33
<ul>
34
<li><a href="/list/website-sources-mirrors.html">Source Code</a></li>
35
<li><a href="/extras.html">Extras</a></li>
36
<li><a href="/guestbook.html">Guestbook</a></li>
37
<li>
38
<details class="inline-details">
39
<summary>Compile Info</summary>
40
<table>
41
<tbody>
42
<tr>
43
<th>Site Start</th>
44
<td>{{SiteCompileTime}}</td>
45
</tr>
46
<tr>
47
<th>Page Start</th>
48
<td>{{CompileTime}}</td>
49
</tr>
50
<tr>
51
<th>View Name</th>
52
<td>{{ViewName}}</td>
53
</tr>
54
</tbody>
55
</table>
56
</details>
57
</li>
58
</ol>
59
</div>
60
<div role="group">
61
<strong>Profiles</strong>
62
<ul>
63
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
64
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
65
<li><a href="/list/link-tree.html">Link-Tree</a></li>
66
</ul>
67
</div>
68
</footer>
69
</body>
70
71
</html>
72