-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
34 lines (34 loc) · 911 Bytes
/
layout.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/css/style.css">
<title>{{ title | default: "C.J. Wade" }}</title>
</head>
<nav class="myNav">
<ul>
<li>
<a href="/" class="text-style">Home</a>
</li>
<li>
<li>
<a href="/#about" class="text-style">About</a>
</li>
<li>
<a href="/projects" class="text-style">Projects</a>
</li>
<li>
<a href="/pages/resume_export" class="text-style">Resume</a>
</li>
</ul>
</nav>
<body>
<main>{{ content }}</main>
</body>
<footer>
<h6>
Copyright © 2024 <i>Christian J. Wade.</i> Made with ♥ in <a href="https://www.11ty.dev/">11ty</a>, & <a href="https://threejs.org/">Three.js</a>
</h6>
</footer>
</html>