-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (75 loc) · 2.24 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
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./GetFreeCopy-modified.png" type="image/png" />
<title>Get Free Copy</title>
<link rel="stylesheet" href="./styles.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
</head>
<body>
<header>
<h1>Get Free Copy</h1>
</header>
<main>
<form id="search-form">
<input
name="term"
type="text"
id="search-input"
placeholder="Search for papers..."
class="form-control"
/>
<button type="submit" id="button" class="btn btn-primary">
<i class="fas fa-search"></i>Search
</button>
</form>
<section id="search-results">
</section>
</main>
<div class="loader-wrapper loader--hidden">
<div class="loader"></div>
</div>
<footer>
<p>
<span>GetFreeCopy</span> is suported by Huang lab
<a href="https://labs.icahn.mssm.edu/kuanhuanglab/"
>(ComputationalOmicsLab.org)</a
>
and Open Box Science
<a href="https://openboxscience.org/">(OpenBoxScience.org)</a>.
The codebase is open-sourced and available under the MIT license at
<a href="https://github.com/Huang-lab/GetFreeCopy">https://github.com/Huang-lab/GetFreeCopy</a>
</p>
</footer>
<div
id="tracking-info"
style="
bottom: 0;
left: 0;
background-color: #333;
color: white;
padding: 15px;
width: 200px;
"
>
<script
src="https://static.elfsight.com/platform/platform.js"
data-use-service-core
defer
></script>
<div
class="elfsight-app-5823ddcf-cca7-4b43-91ee-6678356f63f1"
data-elfsight-app-lazy
></div>
</div>
<script src="./tracking.js"></script>
<script src="./client.js"></script>
</body>
</html>