-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
32 lines (28 loc) · 906 Bytes
/
template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link rel="icon" href="/icon_128.png" type="image/png">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<nav class="hnav">
<a href="/">Home</a>
<a href="/contact">Contact</a>
<a href="/about">About</a>
<a href="/projects">Projects</a>
<a href="/system">System</a>
</nav>
<main>
<div id="content">
</div>
</main>
<footer>
<p>© 2023 Sylv</p>
<p>Powered by <a class="empty-link" href="#nothing">Nothing</a></p>
<p id="nothing">...except handwritten HTML/CSS. There are no frameworks, no JavaScript, and no libraries; not even for this! <sub><strike>the "nothing" trick was shamelessly stolen from <a href="http://lemmaeof.gay">LemmaEOF</a></strike></sub></p>
</footer>
</body>
</html>