-
Notifications
You must be signed in to change notification settings - Fork 2
/
talks.html
137 lines (99 loc) · 4.9 KB
/
talks.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- FONT –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap" rel="stylesheet">
<!-- CSS –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/talks.css">
<!-- Scripts –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.1.0/papaparse.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/site.js"></script>
<script src="js/talks.js"></script>
<meta charset="utf-8">
<title>SAZERAC | TALKS </title>
</head>
<body>
<div class="container">
<div class="navbar-spacer"></div>
<nav class="navbar">
<div class="container">
<ul class="navbar-list">
<li class="navbar-item"><a class="navbar-link" href="index.html">SAZERAC</a></li>
<li class="navbar-item">
<a class="navbar-link" href="#" data-popover="#aboutNavPopover">About</a>
<div id="aboutNavPopover" class="popover">
<ul class="popover-list">
<li class="popover-item">
<a class="popover-link" href="index.html#Updates">Updates</a>
</li>
<li class="popover-item">
<a class="popover-link" href="index.html#introduction">Introduction</a>
</li>
<li class="popover-item">
<a class="popover-link" href="index.html#SOC">SOC</a>
</li>
<li class="popover-item">
<a class="popover-link" href="index.html#schedule">Schedule</a>
</li>
<li class="popover-item">
<a class="popover-link" href="index.html#conduct">Conduct</a>
</li>
<li class="popover-item">
<a class="popover-link" href="index.html#contact">Contact Us</a>
</li>
<li class="popover-item">
<a class="popover-link" href="index.html#sazerac">What is a Sazerac?</a>
</li>
</ul>
</div>
</li>
<li class="navbar-item"><a class="navbar-link" href="posters.html">Posters</a></li>
<li class="navbar-item">
<a class="navbar-link" href="#" data-popover="#talksNavPopover">Talks</a>
<div id="talksNavPopover" class="popover">
<ul class="popover-list">
<li class="popover-item">
<a class="popover-link" href="schedule.html">Live Schedule</a>
</li>
<li class="popover-item">
<a class="popover-link" href="talks.html">Recorded Talks</a>
</li>
</ul>
</div>
</li>
<li class="navbar-item"><a class="navbar-link" href="participants.html">Participants</a></li>
</ul>
</div>
</nav>
<div class="docs-section" id="header">
<h3 class="docs-header">Recorded Talks</h3>
<p>All submitted and live talks permitted to be recorded will ultimately be listed here. Use the tags below to filter the list of talks as desired. Click on the talk to see the recorded video. <b>Note:</b> Talks are ordered randomly.</p>
<a class="button" id="check_all">Check all</a>
<a class="button" id="check_none">Check none</a>
<div id='tag_list_div'><ul id = "tag_list"></ul>
</div>
<!-- <div class="ten columns" id='tag_list_div'><ul id = "tag_list"></ul></div> -->
<div class="docs-section" id="showData"></div>
</div>
</div>
<div id="talk_background"></div>
<div id="talk_container">
<div id="talk_window"></div>
<div id="talk_info_container">
<div id="talk_info">
<div id="talk_speaker"></div>
<div id="talk_title"></div>
<div id="talk_youtube"></div>
<div id="talk_abstract"></div>
<div id="talk_slides"></div>
</div>
</div>
</div>
</body>
</html>