-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (21 loc) · 864 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<title>NZ Topo</title>
<meta name="description" content="Offline maps for the NZ backcountry! Integrates with mountains & routes from ClimbNZ, and includes basic tools for measuring distance and generating elevation profiles">
<link rel='icon' type='text/svg+xml' href='/favicon.svg'>
<link rel="manifest" href="/manifest.json">
<link rel='stylesheet' href='/global.css'>
<link rel="stylesheet" href="/build/extra.css" />
<link rel="stylesheet" href="/build/tailwind.css" />
<script defer src='./src/main.ts' type="module"></script>
<script defer>
if ('serviceWorker' in navigator)
navigator.serviceWorker.register('/serviceWorker.js');
</script>
</head>
<body>
</body>
</html>