index.html
HTML document, ASCII text
1
<!DOCTYPE html>
2
<html lang="en">
3
4
<head>
5
6
7
<meta charset="UTF-8" />
8
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9
<title>Blog Index - S0G</title>
10
<link rel="stylesheet" href="/src/global.css" />
11
12
<link rel="alternate" href="/blog/feed.rss" type="application/rss+xml" title="Steve0Greatness' Blog" />
13
14
</head>
15
16
<body>
17
<header>
18
<h2><a href="/">Steve0Greatness</a></h2>
19
<nav>
20
<a href="/blog">Blog</a>
21
</nav>
22
</header>
23
24
<ol role="navigation" class="breadcrumbs" aria-roledescription="Site breadcrumb">
25
<li>
26
<a href="/">Index</a>
27
</li>
28
29
<li aria-current="location">
30
31
Blog Index
32
33
</li>
34
35
</ol>
36
<main>
37
<h1>Blog Posts</h1>
38
<a href="/blog/feed.rss"><img src="/rss-feed-icon-96-by-96.png" width="16" height="16" alt="RSS Feed"></a>
39
<table class="blog-list">
40
<tbody>
41
42
<tr class="blog-list-title-and-date">
43
<td>
44
<a href="/blog/blog-ini.html">Blog Start</a>
45
</td>
46
<td>
47
<time>2023 Dec 29</time>
48
</td>
49
</tr>
50
51
</tbody>
52
</table>
53
</main>
54
<footer role="group">
55
<div class="footer-link-list-holder">
56
<span aria-hidden="true" id="footer-label-social-accounts" class="footer-link-list-label">Social Accounts</span>
57
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
58
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
59
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
60
</ol>
61
</div>
62
</footer>
63
</body>
64
65
</html>