-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (58 loc) · 2.35 KB
/
index.html
File metadata and controls
66 lines (58 loc) · 2.35 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
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mips Filter Prototype</title>
<!-- Roboto -->
<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=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="topbar">
<div class="topbar__inner">
<div class="brand">
<div class="brand__dot" aria-hidden="true"></div>
<div class="brand__title">Mips content explorer</div>
</div>
<div class="topbar__actions">
<div class="sort-buttons">
<button type="button" class="sort-btn is-active" data-sort="relevant">Most relevant</button>
<button type="button" class="sort-btn" data-sort="newest">Newest</button>
</div>
<button id="filterToggle" class="btn btn--filter" type="button" aria-label="Open filters">Filter</button>
</div>
</div>
</header>
<main class="layout">
<div id="filterOverlay" class="filter-overlay"></div>
<aside class="filters" aria-label="Filters">
<div class="filters__header">
<div class="filters__title">Filter</div>
<div class="filters__header-actions">
<button id="clearBtn" class="btn btn--ghost" type="button" aria-label="Clear all filters">Clear All</button>
<button id="filterClose" class="btn btn--close" type="button" aria-label="Close filters">×</button>
</div>
</div>
<div class="filters__body">
<div id="filterGroups" class="filter-groups"></div>
</div>
<div class="filters__footer">
<button id="showResultsBtn" class="btn btn--primary" type="button">Show Results</button>
</div>
</aside>
<section class="results" aria-label="Results">
<div class="results__meta">
<div id="resultsCount" class="results__count">–</div>
<div id="activeFilters" class="active-filters"></div>
</div>
<div id="grid" class="grid" role="list"></div>
</section>
</main>
<!-- CSV parser -->
<script src="https://cdn.jsdelivr.net/npm/papaparse@5.4.1/papaparse.min.js"></script>
<script src="app.js"></script>
</body>
</html>