-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
80 lines (71 loc) · 2.19 KB
/
index.php
File metadata and controls
80 lines (71 loc) · 2.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="img/favicon.ico" />
<title>NYCSL Home</title>
<link href="lib/bootstrap.min.css" rel="stylesheet">
<link href="lib/bootstrap-material-design.css" rel="stylesheet">
<link href="lib/ripples.min.css" rel="stylesheet">
<link rel="stylesheet" href="lib/katex.min.css">
<link href="style/general.css" rel="stylesheet">
</head>
<body>
<div class="container">
<?php include 'includes/navbar.php'; ?>
<div id="archivedTag" class="alert alert-info" role="alert"> <strong>This problem is archived.</strong> You can't submit answers anymore.</div>
<div class="pageContent">
<?php include 'includes/jumbo.php'; ?>
<div class="row">
<div class="col-sm-5">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Problem</h3>
</div>
<div class="panel-body" id="rulesPanelBody">
</div>
</div>
</div>
<div class="col-sm-7">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Leaderboard</h3>
</div>
<table class="table well well-sm" id="leaderTable">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>School</th>
<th>Score</th>
</tr>
</thead>
<tbody id="leaderboard">
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php
include 'includes/game.php';
include 'includes/footer.php';
include 'includes/tronshaders.php';
?>
<script src="lib/jquery.min.js"></script>
<script src="lib/bootstrap.min.js"></script>
<script src="lib/material.min.js"></script>
<script src="lib/ripples.min.js"></script>
<script src="lib/katex.min.js"></script>
<script src="lib/auto-render.min.js"></script>
<script src="script/backend.js"></script>
<script src="script/general.js"></script>
<script src="script/index.js"></script>
<script src="script/trongl.js"></script>
</body>
</html>