-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhighlights.html
183 lines (173 loc) · 6.29 KB
/
highlights.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<!-- Needs to be run on a server: python -m SimpleHTTPServer (#### > 1024, default 8000) -->
<!-- To kill existing process on port ####: sudo lsof -t -i tcp:#### | xargs kill -9 -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script>
$('head').load('header.html', function() {
// Page-specific information
document.title = "Highlights - Princeton University Science Olympiad Invitational"
document.querySelector("#canonicalLink").setAttribute("href", "/highlights")
document.querySelector("#title_meta").setAttribute("content", "Tournament Information | Tournament Highlights")
});
// wrapped in function so executes after the page is loaded
$(function(){
$("nav").load("navbar.html");
$("footer").load("footer.html");
});
</script>
</head>
<body>
<!-- Imported navbar -->
<nav class="navbar navbar-inverse navbar-static-top"></nav>
<div class="container content">
<h1 class="section-title">2020 Tournament Highlights</h1>
<hr>
<h3 class="section-subtitle">Tests and Answers</h3>
<ul>
<li>Can be found in the <a href="past-tests.html">archive</a>.</li>
</ul>
<h3 class="section-subtitle">Photos</h3>
<ul>
<li>The complete photo album can be found on our <a href="https://www.facebook.com/princetonscioly/photos/?tab=album&album_id=884773695282646" target="_blank">Facebook page</a>.</li>
</ul>
<h3 class="section-subtitle">Key Facts</h3>
<ul>
<li>56 teams from 9 states attended, for a total of around 900 high school students.</li>
<!-- <li>25 returning schools / 32 teams of the 48 teams that attended the 2018 tournament.</li> -->
<li>171 undergraduate and graduate volunteers from 20 academic departments volunteered.</li>
<li>Team of 26 organizers from 12 academic departments planned the tournament.</li>
<!-- <li>72 rooms in 14 buildings across campus were used.</li> -->
<li>Only college-run invitational tournament in country to waive registration fees.</li>
<li>First year to offer travel stipend, giving out over $2800 to 6 different schools so they could afford travel costs and academic materials.</li>
</ul>
<h3 class="section-subtitle">Volunteer Summary</h3>
<table id="volunteers-table" class="table table-striped table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th>AB</th>
<th>#</th>
<th>BSE</th>
<th>#</th>
</tr>
</thead>
<!-- Sorting provided by data-order field -->
<tbody>
<tr>
<td>Anthropology</td>
<td>2</td>
<td>Chemical and Biological Engineering</td>
<td>11</td>
</tr>
<tr>
<td>Chemistry</td>
<td>4</td>
<td>Civil and Environmental Engineering</td>
<td>8</td>
</tr>
<tr>
<td>Economics</td>
<td>5</td>
<td>Computer Science</td>
<td>14</td>
</tr>
<tr>
<td>English</td>
<td>1</td>
<td>Electrical Engineering</td>
<td>14</td>
</tr>
<tr>
<td>Geosciences</td>
<td>1</td>
<td>Mechanical and Aerospace Engineering</td>
<td>8</td>
</tr>
<tr>
<td>History</td>
<td>2</td>
<td>Operations Research & Financial Engineering</td>
<td>4</td>
</tr>
<tr>
<td>Mathematics</td>
<td>6</td>
<td><b>Total:</b></td>
<td><b>85</b></td>
</tr>
<tr>
<td>Molecular Biology</td>
<td>6</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Neuroscience</td>
<td>2</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Physics</td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Psychology</td>
<td>2</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Sociology</td>
<td>1</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Undecided</td>
<td>16</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Woodrow Wilson School</td>
<td>2</td>
<td></td>
<td></td>
</tr>
<tr>
<td><b>Total:</b></td>
<td><b>86</b></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<!-- Imported Footer -->
<footer class="footer-inverse"></footer>
<!-- Latest compiled and minified JavaScript: must load JQuery before Bootstrap -->
<!-- <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdn.datatables.net/v/bs/jq-2.2.4/dt-1.10.15/fh-3.1.2/r-2.1.1/datatables.min.js"></script>
<script src="https://use.fontawesome.com/4d03c06201.js"></script>
<!-- <script>
$(document).ready(function() {
$('#volunteers-table').DataTable(
{
"bInfo" : false,
"bPaginate": false,
"bFilter": false,
"aaSorting": []
}
);
} );
</script> -->
</body>
</html>