-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
21 lines (21 loc) · 679 Bytes
/
Copy path404.html
File metadata and controls
21 lines (21 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Hi, I'm Bloin</title>
<link rel="icon" href="./assets/images/favicon.png">
<link rel="stylesheet" href="./base.css">
<link rel="stylesheet" href="./index.css">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
</head>
<body>
<div class="root-flex-container">
<div id="navbar"></div>
<main class="main"></main>
</div>
<script type="module" src="/src/main.ts"></script>
<script type="module" src="/pages/navbar.ts"></script>
<script type="module" src="/404.ts"></script>
</body>
</html>