_layout.html
HTML document, ASCII text
1
<!DOCTYPE html>
2
<html lang="en">
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
<link rel="stylesheet" href="/src/global.css" />
10
{% endblock %}
11
</head>
12
13
<body>
14
<header>
15
<h2><a href="/">Steve0Greatness</a></h2>
16
<nav>
17
<a href="/blog">Blog</a>
18
<a href="/link-tree.html">Link Tree</a>
19
</nav>
20
</header>
21
{% block breadcrumbs %}{% endblock %}
22
<main>{% block content %}{% endblock %}</main>
23
<footer role="group">
24
<div class="footer-link-list-holder">
25
<span aria-hidden="true" id="footer-label-social-accounts" class="footer-link-list-label">Social Accounts</span>
26
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
27
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
28
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
29
</ol>
30
</div>
31
</footer>
32
</body>
33
34
</html>
35