-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 1.73 KB
/
index.html
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
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nicobako</title>
<!-- htmx : SPA-like functionality -->
<script src="https://unpkg.com/[email protected]"></script>
<!-- hyperscript : JavaScript, hold the JavaScript -->
<script src="https://unpkg.com/[email protected]"></script>
<!-- styles - by pico.css-->
<link href="/static/pico.min.css" rel="stylesheet">
<!-- PWA -->
<link rel="manifest" href="manifest.json" />
<meta name="theme-color" content="#ffffff">
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js');
};
</script>
<link rel="apple-touch-icon" sizes="180x180" href="/static/nico-bako.png">
</head>
<body>
<nav>
<ul>
<li>
<h1><a href="/">Nico Bako</a></h1>
</li>
</ul>
<ul>
<li>
<button hx-trigger="load,click" hx-get="/pages/about_me.html" hx-target="#content">About Me</button>
</li>
<li>
<button hx-trigger="click" hx-get="/pages/about_site.html" hx-target="#content">About Site</button>
</li>
<li>
<button hx-trigger="click" hx-get="/pages/other_work.html" hx-target="#content">Other Work</button>
</li>
<li>
<button hx-trigger="click" hx-get="/pages/other_links.html" hx-target="#content">Other Links</button>
</li>
</ul>
</nav>
</header>
<content id="content">
Empty Content
</content>
</body>
</html>