-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 2.23 KB
/
Copy pathindex.html
File metadata and controls
49 lines (44 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover, maximum-scale=1">
<title>Redside — Central Oregon Fishing</title>
<meta name="description" content="Where to fish in Central Oregon, what to fish for, and what to use — a personal companion.">
<!-- PWA / install -->
<link rel="manifest" href="./manifest.webmanifest">
<meta name="theme-color" content="#123b3d">
<link rel="apple-touch-icon" href="./icons/apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Redside">
<!-- Fonts: Archivo (display), IBM Plex Sans (body), IBM Plex Mono (instrument data) -->
<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=Archivo:wght@600;700;800&family=IBM+Plex+Mono:wght@400;600&family=IBM+Plex+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main id="app"><!-- rendered by app.js --></main>
<nav class="tabbar" aria-label="Primary navigation">
<a class="tab" data-route="#/" href="#/">
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M3 12c4-6 14-6 18 0-4 6-14 6-18 0Z"/><circle cx="15" cy="12" r="1.4" fill="currentColor" stroke="none"/></svg>
Today
</a>
<a class="tab" data-route="#/waters" href="#/waters">
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M4 7h16M4 12h16M4 17h16"/></svg>
Waters
</a>
<a class="tab" data-route="#/ask" href="#/ask">
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 3a9 9 0 1 0 4.5 16.8L21 21l-1.2-4.5A9 9 0 0 0 12 3Z"/><path d="M12 8v4M12 15.5v.5"/></svg>
Ask
</a>
<a class="tab" data-route="#/log" href="#/log">
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M6 3h9l4 4v14H6z"/><path d="M9 12h7M9 16h7M9 8h3"/></svg>
Log
</a>
</nav>
<script type="module" src="./js/app.js"></script>
</body>
</html>