summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html56
1 files changed, 12 insertions, 44 deletions
diff --git a/index.html b/index.html
index 8f7d055..1873efc 100644
--- a/index.html
+++ b/index.html
@@ -4,55 +4,23 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Luhamus</title>
- <link rel="stylesheet" href="style.css" />
+ <link rel="stylesheet" href="/style.css" />
</head>
<body>
<div id="app">
- <nav>
- <a href="#/">Home</a>
- <a href="https://git.luhamus.com" target="_blank">Git server</a>
- <a href="#/blog">Blog</a>
- <a href="#/about">About</a>
- </nav>
+ <header class="banner">
+ <span>Luhamus</span>
+ </header>
-
- <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>
+ <nav id="nav"></nav>
-
- <section class="page" id="page-404">
- <h1>Page not found</h1>
- <p><a href="#/">Go home</a></p>
- </section>
+ <main>
+ <h1>Hello and welcome!</h1>
+ <p>My name is <strong>Rasmus Luha</strong>.<br>I am (graduated but nevertheless still) studying Computer Science with a focus on DevOps.</p>
+ <!-- <p>You can reach me at <a href="mailto:you@example.com">you@example.com</a>.</p> -->
+ </main>
</div>
-
-<script src="script.js"></script>
+ <footer id="footer"></footer>
+ <script src="/script.js"></script>
</body>
</html>