-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (62 loc) · 1.91 KB
/
index.html
File metadata and controls
65 lines (62 loc) · 1.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pinlore</title>
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<header class="top-bar">
<h1 class="app-title">Pinlore</h1>
<div class="location-search-wrap">
<input
id="locationSearchInput"
type="text"
placeholder="Search location..."
aria-label="Search location"
autocomplete="off"
/>
<div id="locationSearchDropdown" class="location-search-dropdown" hidden></div>
</div>
<button
id="themeToggle"
class="theme-toggle"
type="button"
aria-label="Toggle dark and light theme"
title="Toggle theme"
>
🌙
</button>
</header>
<div class="app-container">
<main id="map" aria-label="Memory map"></main>
<div class="sidebar-backdrop"></div>
<aside class="memory-sidebar" aria-label="Memories">
<div class="memory-sidebar-header">
<h2 class="memory-sidebar-title">Memories</h2>
<input
id="memorySidebarSearch"
class="memory-sidebar-search"
type="text"
placeholder="Search memories..."
aria-label="Search memories"
/>
</div>
<div id="memorySidebarList" class="memory-sidebar-list"></div>
</aside>
</div>
<script
src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""
></script>
<script type="module" src="./assets/js/main.js"></script>
</body>
</html>