-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (61 loc) · 1.78 KB
/
index.html
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
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Sources</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h3 class="text-center">Data Sources</h3>
<div class="networks-container">
<div class="sidebar" id="search-sidebar">
<div class="facet-group" id="side-panel-format">
<button class="title" aria-expanded="true">
Data Sources
</button>
<div id="side-collapse-format" class="collapse in" aria-expanded="true">
<a id="list-all" class="facet js-facet-item facetAND">
<span class="text">
<span class="facet-value">
All data sources
</span>
</span>
<span class="badge badge-total"> </span>
</a>
</div>
</div>
</div>
<div id="networks" class="networks">
<p>
Data sources found: <span class="total"></span>
</p>
<div class="flex flex-space-between">
<input class="search" placeholder="Search">
<div class="networks-sort flex">
<label for="sort-select">
Sort
</label>
<select id="sort-select">
<option value="asc">
Ascending
</option>
<option value="desc">
Descending
</option>
</select>
</div>
<button class="export">
Export to CSV
</button>
</div>
<ol class="list" style="counter-reset: item 0">
</ol>
<ul class="pagination"></ul>
</div>
</div>
</body>
<script src="js/list.min.js"></script>
<script src="js/networks.js"></script>
</html>