-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (68 loc) · 2.75 KB
/
index.html
File metadata and controls
81 lines (68 loc) · 2.75 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
<!DOCTYPE>
<html>
<head>
<title>Columbia University: Courses Map</title>
<meta name="keywords" content="Columbia University,Classes,Graph,Courses,Prerequisites">
<meta name="description" content="Graphical representation of Columbia University classes and its prerequisites">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<!-- https://unpkg.com/cytoscape/dist/cytoscape.min.js -->
<!-- https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.17.1/cytoscape.min.js -->
<script src="static/lib/cytoscape.min.js"></script>
<link rel="stylesheet" href="static/style.css">
</head>
<body>
<div class="site-title">
<img src="static/images/cu_logo.gif" height="55" width="337"/>
</div>
<div class="top-hud">
Department:
<select id="codesList"></select>
<span class="search">
Search:
<input id="search" type="text" />
<a href="#" id="more-filters-btn">More Filters</a>
</span>
<div id="advanced-filters">
<select id="semesterList"></select>
<label class="adv-filter"><input type="checkbox" id="l1000"/> 1000</label>
<label class="adv-filter"><input type="checkbox" id="l2000" /> 2000</label>
<label class="adv-filter"><input type="checkbox" id="l3000" /> 3000</label>
<label class="adv-filter"><input type="checkbox" id="l4000" /> 4000</label>
<label class="adv-filter"><input type="checkbox" id="l5000" /> 5000</label>
<label class="adv-filter"><input type="checkbox" id="l6000" /> 6000</label>
<br class="adv-filter" />
<label class="adv-filter"><input type="checkbox" id="df0"/> Mon</label>
<label class="adv-filter"><input type="checkbox" id="df1"/> Tue</label>
<label class="adv-filter"><input type="checkbox" id="df2"/> Wed</label>
<label class="adv-filter"><input type="checkbox" id="df3"/> Thu</label>
<label class="adv-filter"><input type="checkbox" id="df4"/> Fri</label>
<label class="adv-filter"><input type="checkbox" id="df5"/> Sat</label>
<label class="adv-filter"><input type="checkbox" id="df6"/> Sun</label>
</div>
</div>
<div id="cy"></div>
<div id="info">
<div>
<div id="course-info"></div>
<div id="course-descr"></div>
<div id="instructors"></div>
</div>
<div id="bottom">
<small>
Updated on <span id="generationDate"></span>
<a href="https://github.com/soid/columbia-classes-graph">
<img src="static/images/GitHub-Mark-64px.png" height="16" width="16" title="Columbia University" /> Source Code
</a>
</small>
</div>
</div>
<div>
<small id="source-code-small">
<a href="https://github.com/soid/columbia-classes-graph">
<img src="static/images/GitHub-Mark-64px.png" height="16" width="16"/>
</a>
</small>
</div>
<script src="static/classes.js"></script>
</body>
</html>