forked from dfan/puscioly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.html
62 lines (53 loc) · 2.94 KB
/
updates.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
<!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 = "Updates - Princeton University Science Olympiad Invitational"
document.querySelector("#canonicalLink").setAttribute("href", "/updates")
document.querySelector("#title_meta").setAttribute("content", "Updates")
});
// 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">
<div class="row">
<div class="col-lg-12">
<h1 class="section-title">Updates</h1>
<hr>
<h3 class="section-subtitle">September 10, 2018</h3>
<ul>
<li>The registration date has been moved earlier to <b>Tuesday September 18, 2018</b> as this works better for our staff, who are needed onsite to monitor and process registration. The link has been posted in the <a href="registration.html">registration page</a>.</li>
</ul>
<h3 class="section-subtitle">August 25, 2018</h3>
<ul>
<li>We are excited to announce that the third annual Princeton University Science Olympiad Invitational will be on <b>Saturday, February 9th, 2018</b>!</li>
<ul class="sub-bullet">
<li>Hotel discount rates, travel/parking information, competition schedule, and more will be posted later.</li>
</ul>
</ul>
</div>
</div>
</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 src="https://use.fontawesome.com/be16867854.js"></script>
</body>
</html>