-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
45 lines (45 loc) · 2.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>photo-pointer</title>
<meta name="description" content="One map of every photo-worthy place in your region — open data only.">
<meta name="theme-color" content="#f5f1e8">
<!-- Link-preview (Open Graph + Twitter) card. -->
<meta property="og:type" content="website">
<meta property="og:title" content="photo-pointer">
<meta property="og:description" content="One map of every photo-worthy place in your region — viewpoints, markers, parks, trails, wildlife, dark skies. Open data only.">
<meta property="og:url" content="https://photo-pointer.pages.dev">
<meta property="og:image" content="https://photo-pointer.pages.dev/social-preview.png">
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="640">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="photo-pointer">
<meta name="twitter:description" content="One map of every photo-worthy place in your region — open data only.">
<meta name="twitter:image" content="https://photo-pointer.pages.dev/social-preview.png">
<link rel="manifest" href="./manifest.webmanifest">
<link rel="icon" href="./icon-192.png" type="image/png" sizes="192x192">
<link rel="apple-touch-icon" href="./apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<script>
// Apply the stored theme before first paint — no flash.
try {
var t = localStorage.getItem('pointer.theme');
if (!t) t = matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
document.documentElement.dataset.theme = t;
} catch (e) { /* private mode */ }
</script>
<link rel="stylesheet" href="./src/vendor/leaflet.css">
<link rel="stylesheet" href="./src/styles.css">
</head>
<body>
<div id="app">
<div class="app-loading" role="status">
<div class="app-loading-title">Loading photo-pointer…</div>
<div class="app-loading-sub">finding the best photo spots near you</div>
</div>
</div>
<script type="module" src="./src/main.js"></script>
</body>
</html>