-
Notifications
You must be signed in to change notification settings - Fork 1
/
presentations.html
74 lines (53 loc) · 2.55 KB
/
presentations.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<link rel=preconnect href=https://fonts.gstatic.com crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel=stylesheet href=https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.0/css/academicons.min.css
integrity="sha512-W4yqoT1+8NLkinBLBZko+dFB2ZbHsYLDdr50VElllRcNt2Q4/GSs6u71UHKxB7S6JEMCp5Ve4xjh3eGQl/HRvg=="
crossorigin=anonymous media=print onload="this.media='all'">
<link rel=preload as=style
href="https://fonts.googleapis.com/css2?family=Fjalla+One&family=Merriweather&family=Roboto+Mono&display=swap">
<link rel=stylesheet
href="https://fonts.googleapis.com/css2?family=Fjalla+One&family=Merriweather&family=Roboto+Mono&display=swap"
media=print onload="this.media='all'">
<link rel=stylesheet href=/css/researcher.css>
<script src=/js/researcher.js type="text/javascript"></script>
<script src=/js/modal.js type="text/javascript"></script>
<title>Presentations</title>
<link rel="icon" type="image/icon" href="/img/no.png">
</head>
<body id=top class="page-wrapper no-navbar" onload = todayDate()>
<span id="navigation"></span> <!--to account for the javascript scrolling function-->
<section id=presentations class="home-section wg-pages" style="padding-top:30px">
<div class="container">
<div class="row justify-content-center">
<div class="section-heading col-12 mb-3 text-center">
<h1 class=mb-0>Presentations</h1>
</div>
<div class="col-12">
<div id="presentationCards">
</div>
</div>
</div>
</div>
</section>
<div class=page-footer>
<div class="site-footer">
<div class="col-12 footer-rows">
<div class="footer-container">
I hope you have a great day!
</div>
<div class="col-12 footer-rows">
<small>© <em id="date"></em> Dr. Natasha Orr</small>
</div>
</div>
</div>
</div>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", populate());
</script>
</body>
</html>