diff options
Diffstat (limited to 'blog/post-1.html')
| -rw-r--r-- | blog/post-1.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/blog/post-1.html b/blog/post-1.html new file mode 100644 index 0000000..1a33b64 --- /dev/null +++ b/blog/post-1.html @@ -0,0 +1,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> |
