summaryrefslogtreecommitdiff
path: root/blog.html
blob: 39d04c7d1dcea759108a96b70377db6d0e0594f8 (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 - TODO</a>
          <span class="post-date">Jun 2026</span>
        </li>
      </ul>
    </main>
  </div>
  <footer id="footer"></footer>
  <script src="/script.js"></script>
</body>
</html>