forked from A-Kun/utsc-course-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.17 KB
/
index.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
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UTSC Course Tree</title>
<link rel="stylesheet" href="css/foundation.min.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="row">
<div class="large-12 columns">
<a class="expanded button" href="javascript: location.reload();">Reset</a>
</div>
</div>
<div id="courses-canvas"></div>
<hr>
<div class="row">
<div class="large-12 columns">
<p>This site is for demo purposes only. Data shown may be inaccuate.</p>
<p>Copyright <a href="http://andrewwang.ca" target="_blank">Andrew Wang</a>, 2017. Distributed under the terms of the <a href="http://www.gnu.org/licenses/" target="_blank">GNU General Public License</a>.</p>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>