forked from dfan/puscioly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
63 lines (56 loc) · 4.54 KB
/
info.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
<!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 = "Competition Policies - Princeton University Science Olympiad Invitational"
document.querySelector("#canonicalLink").setAttribute("href", "/info")
document.querySelector("#title_meta").setAttribute("content", "Tournament Information | Competition Policies")
});
// 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">Tournament Information</h1>
<hr>
<h2 class="section-subtitle">Competition Policies</h2>
<ul>
<li>All events will be run by Science Olympiad alumni who have medaled at Nationals or the State level, and all tests/labs will be revised by our executive board for consistency, quality and appropriate difficulty spread.</li>
<li>All tests and keys with raw score statistics will be made available to teams after competition.</li>
<li>Every team will be assigned a homeroom to stay in during competition day.</li>
<li>Each team must be accompanied by one unique adult. Schools with two teams must thus be accompanied by two unique adults.</li>
<li>The tournament schedule will be based off and adhere closely to the national tournament schedule.</li>
<li>All events will follow the national Science Olympiad Inc. rules posted at <a href="https://store.soinc.org" target="_blank">store.soinc.org</a>, as well as clarifications posted at <a href="https://www.soinc.org/events/rules-clarifications" target="_blank">soinc.org/events/rules-clarifications</a> and FAQs posted at <a href="https://www.soinc.org/events/frequently-asked-questions" target="_blank">soinc.org/events/frequently-asked-questions</a>. For events whose rules or content differ with the level of competition, we will adhere to the rules specified at the <i>regional</i> level.</li>
<li>Events will be scored according to the guidelines at <a href="https://www.soinc.org/scoring-guidelines" target="_blank">https://www.soinc.org/scoring-guidelines</a>.</li>
<li>We will adhere to the following safety protocols with regards to <a href="https://www.soinc.org/eye-protection" target="_blank">eye protection</a> and <a href="https://www.soinc.org/lasers" target="_blank">laser usage</a>.</li>
<li>Competitors must adhere to the code of ethics and policies outlined at <a href="https://www.soinc.org/join/policies" target="_blank">soinc.org/join/policies</a>.</li>
<li>Competitors, parents and coaches may photograph and record videos of their own team's build devices but may not do so for another team without permission. We will have staff photographers take photos throughout the day and post these photos afterwards.</li>
</ul>
<p>Learn about registration <a href="registration.html">here</a>.</p>
</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>