blob: d8ee4c0bb92eaffb2026c8fc6c664a6eb91ff864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blog - Luhamus</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div id="app">
<nav id="nav"></nav>
<main>
<h1>Writing</h1>
<ul class="post-list">
<li>
<a href="/blog/post-1.html">My first post title</a>
<span class="post-date">Jun 2026</span>
</li>
</ul>
</main>
</div>
<footer id="footer"></footer>
<script src="/script.js"></script>
</body>
</html>
|