summaryrefslogtreecommitdiff
path: root/blog
diff options
context:
space:
mode:
authorR-man3000 <rasmus.luha@gmail.com>2026-06-12 17:00:31 +0300
committerR-man3000 <rasmus.luha@gmail.com>2026-06-12 17:00:31 +0300
commit30a19112216e12d19459474f7308ec57cd8aaf9d (patch)
tree6f15108e6afc492d180311460a7a15df9899a8ea /blog
parentd1f3fa958413c76226c3172a1c12de1732768c69 (diff)
site redo
Diffstat (limited to 'blog')
-rw-r--r--blog/post-1.html32
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..e4efdb8
--- /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>Your first post title</h1>
+ <p class="post-meta">June 12, 2026</p>
+
+ <p>Your post content starts here.</p>
+
+ <h2>A subheading</h2>
+
+ <p>More content.</p>
+
+ <pre><code>some code block if you need it</code></pre>
+
+ <p><a href="/blog.html">← Back to blog</a></p>
+ </article>
+ </main>
+ </div>
+ <script src="/script.js"></script>
+</body>
+</html>