-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.59 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Bookmarks HomeDash">
<title>Bookmarks</title>
<link rel="stylesheet" href="styles.css">
</head><body>
<div class="container">
<header class="header">
<div class="header-top">
<h1>Bookmarks</h1>
<a href="#" id="karakeepLink" class="karakeep-link" title="Open KaraKeep">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
</div>
<div class="search-bar">
<input
type="text"
id="searchInput"
placeholder="Search bookmarks..."
aria-label="Search bookmarks"
/>
</div>
</header>
<main id="content">
<div class="loading">
<div class="spinner"></div>
<p>Loading database...</p>
</div>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script>
<script type="module" src="app.js"></script>
</body>
</html>