summaryrefslogtreecommitdiff
path: root/blog/post-1.html
blob: 1a33b6475dbcb211bd50811c8867f81ba6058cff (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
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Your first post title — Your Name</title>
  <link rel="stylesheet" href="/style.css" />
</head>
<body>
  <div id="app">
    <nav id="nav"></nav>

    <main>
      <article>
        <h1>My first post title - TODO</h1>
        <p class="post-meta">June 12, 2026</p>

        <p>Here would be the post content.</p>

        <h2>A subheading</h2>

        <p>More content.</p>

        <pre><code>A code block would look like this</code></pre>

        <p><a href="/blog.html">← Back to blog</a></p>
      </article>
    </main>
  </div>
  <script src="/script.js"></script>
</body>
</html>