-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreferences.html
116 lines (111 loc) · 3.67 KB
/
references.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!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>References | B-AMP</title>
<link rel="icon" type="image/x-icon" href="./static/images/favicon.ico">
<link rel="stylesheet" href="static/css/style.css" />
</head>
<body>
<nav>
<h1 id="siteTitle">B-AMP</h1>
<section id="navLinksSection">
<a href="index.html"><h3>Home</h3></a>
<a href="all.html"><h3>AMP Library</h3></a>
<a href="anti_gram_positive.html"><h3>Anti Gram Positive AMPs</h3></a>
<a href="anti_gram_negative.html"><h3>Anti Gram Negative AMPs</h3></a>
<a href="targets.html"><h3>Biofilm Targets</h3></a>
<a href="docked_single.html"><h3>AMPs Docked to Single Biofilm Target</h3></a>
<a href="docked_dual.html"><h3>AMPs Docked to Dual Biofilm Targets</h3></a>
<a href="code.html"><h3>Code</h3></a>
<h3 id="currentPage">References</h3>
</section>
</nav>
<main>
<h1 style="margin: 30px; font-size: 3.5em; text-align: center">References</h1>
<ul id="citations"></ul>
</main>
<footer>
<img src="static/images/kaushik-lab-logo.png" id="labLogo" />
<section id="footerContent">
<p>A project by</p>
<h1>HUMAN-RELEVANT INFECTION BIOLOGY GROUP</h1>
<h2>(led by Dr. Karishma Kaushik)</h2>
<hr />
<section class="footerLinks">
<a
href="https://www.karishmakaushiklab.com/"
target="_blank"
data-goatcounter-title="(REDIRECT) karishmakaushiklab.com"
rel="noopener noreferrer"
>
<img src="static/icons/globe.png" class="footerLink" />
</a>
<a
href="https://twitter.com/KaushikLab"
target="_blank"
data-goatcounter-title="(REDIRECT) Twitter @KaushikLab"
rel="noopener noreferrer"
>
<img src="static/icons/twitter.png" class="footerLink" />
</a>
<a
href="mailto:karishmaskaushik@gmail.com"
target="_blank"
data-goatcounter-title="(EMAIL) karishmaskaushik@gmail.com"
rel="noopener noreferrer"
>
<img src="static/icons/mail.png" class="footerLink" />
</a>
<a
href="https://github.com/KarishmaKaushikLab/B-AMP"
target="_blank"
data-goatcounter-title="(REDIRECT) GitHub KarishmaKaushikLab/B-AMP"
rel="noopener noreferrer"
>
<img src="static/icons/github.png" class="footerLink" />
</a>
</section>
</section>
</footer>
<section id="license">
<p>
This work is licensed under a
<a
rel="license"
style="color: white"
href="https://creativecommons.org/licenses/by/3.0/deed.en_US"
rel="noopener noreferrer"
target="_blank"
data-goatcounter-title="(REDIRECT) CC3 License"
>Creative Commons Attribution 3.0 Unported License</a
>, with the exception of this website's code and additional utility code that aided
this work, which is separately licensed under the
<a
rel="license"
style="color: white"
href="https://github.com/KarishmaKaushikLab/B-AMP/blob/master/LICENSE"
rel="noopener noreferrer"
target="_blank"
data-goatcounter-title="(REDIRECT) GitHub License GPLv3"
>GNU General Public License v3.0</a
>.
</p>
</section>
<script src="static/js/references.js"></script>
<script
data-goatcounter="https://b-amp.goatcounter.com/count"
async
src="//gc.zgo.at/count.js"
></script>
<script>
// Track outgoing clicks using GoatCounter
const outgoingLinks = document.querySelectorAll('a[target="_blank"]');
for (const outgoingLink of outgoingLinks) {
outgoingLink.setAttribute("data-goatcounter-click", outgoingLink.href);
}
</script>
</body>
</html>