summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorR-man3000 <rasmus.luha@gmail.com>2026-06-12 14:35:35 +0300
committerR-man3000 <rasmus.luha@gmail.com>2026-06-12 14:35:35 +0300
commit0cc9d2b094c35adfe6d3b548d7d40219cc611d32 (patch)
tree4d993931711eb395beedf4ce3b3879fab50998d5 /index.html
parent0b93b2583fa57bcfa8a70ebed3f90e5e78d76bfe (diff)
barebones site start
Diffstat (limited to 'index.html')
-rw-r--r--index.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..1447fcd
--- /dev/null
+++ b/index.html
@@ -0,0 +1,57 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>Luhamus</title>
+ <link rel="stylesheet" href="style.css" />
+</head>
+<body>
+ <div id="app">
+ <nav>
+ <a href="#/">Home</a>
+ <a href="#/blog">Blog</a>
+ <a href="#/about">About</a>
+ </nav>
+
+
+ <section class="page" id="page-home">
+ <h1>Hello and welcome!</h1>
+ <p>My name is <strong>Rasmus Luha</strong>.<br> I am studying Computer Science with a focus on DevOps.</p>
+ <p>
+ You can reach me at
+ <a href="mailto:you@example.com">TODO@TODO.com</a>.
+ </p>
+ </section>
+
+
+ <section class="page" id="page-blog">
+ <h1>Writing</h1>
+ <ul class="post-list">
+ <li>
+ <a href="#/blog/post-1">Your first post title</a>
+ <span class="post-date">Jun 2026</span>
+ </li>
+ <li>
+ <a href="#/blog/post-2">Another post title</a>
+ <span class="post-date">May 2026</span>
+ </li>
+ </ul>
+ </section>
+
+
+ <section class="page" id="page-about">
+ <h1>About</h1>
+ <p>A bit more about my background, interest, work.</p>
+ </section>
+
+
+ <section class="page" id="page-404">
+ <h1>Page not found</h1>
+ <p><a href="#/">Go home</a></p>
+ </section>
+ </div>
+
+<script src="script.js"></script>
+</body>
+</html>