-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (37 loc) · 1.48 KB
/
index.html
File metadata and controls
47 lines (37 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome - John Pyper's Web of Wonders</title>
<meta name="description" content="This is just a little place to keep some thoughts and whatnots.">
<link rel="stylesheet" href="https://jpyper.github.io/main.css">
</head>
<body>
<div class="site-container">
<header class="site-header">
<h1><a href="/">John Pyper's Web of Wonders</a></h1>
</header>
<aside class="site-sidebar">
<nav>
<h3>Navigation</h3>
<ul>
<li><a href="https://jpyper.github.io">Home</a></li>
<li><a href="https://jpyper.github.io/blog">Blog</a></li>
<li><a href="https://jpyper.github.io/wiki">Wiki</a></li>
</ul>
</nav>
</aside>
<main class="site-content">
<article>
<h2>Welcome</h2>
<p>This is the landing page of my minimal static site.</p>
<p>You can navigate to the <a href="/blog/">Blog</a> or the <a href="/wiki/">Wiki</a> using the sidebar.</p>
</article>
</main>
<footer class="site-footer">
<p>© 2025 John Pyper's Web of Wonders. All rights reserved.</p>
</footer>
</div>
</body>
</html>