blob: 8f7d055cd6ed1a21f68665d75f600843d77e1f87 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<!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="https://git.luhamus.com" target="_blank">Git server</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>
|