-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (35 loc) · 1.01 KB
/
index.html
File metadata and controls
42 lines (35 loc) · 1.01 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<aside class="sidebar">
<div class="header-title">
<h1 onclick="resetFilters()">Links</h1>
<span class="total-count" id="total-count"></span>
</div>
<p class="subtitle">My Link Collection</p>
<div class="search-box">
<input type="text" id="search" placeholder="Search...">
</div>
<div class="tags-section">
<h3>Tags</h3>
<div class="tags-filter" id="tags-filter"></div>
</div>
</aside>
<main class="main-content">
<div class="cards-grid" id="cards-grid"></div>
<div class="empty-state" id="empty-state" style="display: none;">
<p>No links found</p>
</div>
</main>
</div>
<script src="data.js"></script>
<script src="app.js"></script>
</body>
</html>