-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·55 lines (54 loc) · 1.81 KB
/
index.html
File metadata and controls
executable file
·55 lines (54 loc) · 1.81 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<!-- python3 -m http.server -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="img-src 'self' https://github.com https://raw.githubusercontent.com;"
/>
<title>CODEBASE</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap"
rel="stylesheet"
/>
<script src="/pages/math-lib.js"></script>
</head>
<body>
<canvas id="fullscreen-matrix-canvas"></canvas>
<header>
<div class="logo">.codebase</div>
<div class="sub-header">
Adventures with code, copyright paul adams...
</div>
<button class="menu-toggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
</header>
<div class="container">
<aside class="left-panel">
<nav class="side-nav">
<a href="#/" data-route>Home</a>
<a href="#/about" data-route>About</a>
<a href="#/contact" data-route>Contact</a>
<a href="#/projects" data-route>Projects</a>
<a href="pages/live-coding.html">Live Coding</a>
<a href="#/piano" data-route>Piano</a>
</nav>
</aside>
<main id="app"></main>
</div>
<script src="app.js"></script>
<script src="ui.js"></script>
</body>
</html>