-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (49 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Research Archive</title>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<script src='https://cdn.jsdelivr.net/npm/[email protected]/papaparse.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Make highlight of search keys possible -->
<script src="highlight.js"></script>
<script src="https://cdn.datatables.net/plug-ins/1.10.16/features/searchHighlight/dataTables.searchHighlight.min.js"></script>
<link rel="stylesheet" href="https:////cdn.datatables.net/plug-ins/1.10.16/features/searchHighlight/dataTables.searchHighlight.css">
<script src="main.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://use.fontawesome.com/releases/v5.0.7/css/all.css" rel="stylesheet">
</head>
<body>
<div id="header">
<img src="trincoll.png" alt="Trinity College logo">
<h1>Research Archive</h1>
<h3>
<a href="//cher.trincoll.edu" target="_blank">Center for Hartford Engagement and Research</a> (CHER),
Trinity College
</h3>
<p id="about-link">
<a href="https://github.com/Action-Lab/cher-research-archive">About code and data</a>
<p>
<form id="filters">
<div id="filtersButton">
<i class="fas fa-filter"></i> Subjects
</div>
<div id="filterHelpers" class="invisible">
<a href="#" id="selectAll">Select All</a> |
<a href="#" id="removeAll">Remove All</a>
</div>
<div id="filtersCheckboxes" class="invisible">
</div>
</form>
</div>
<div id="spinner">
<i class="fas fa-spinner fa-spin"></i>
</div>
<table id="results" width="100%">
</table>
</body>
</html>