-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoursehomepage.html
More file actions
37 lines (32 loc) · 840 Bytes
/
coursehomepage.html
File metadata and controls
37 lines (32 loc) · 840 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Gallifrey</title>
<link rel='stylesheet' href='main.css' />
<script src='script.js'></script>
</head>
<body onload='setupCourseHomepage()' id='coursehomepage'>
<div class='navbar'><h3>Gallifrey</h3><div id='logoutformdiv'></div></div>
<h1 id='coursename'>Course Name</h1>
<div>
<h3>Course Overview</h3>
<p id='courseoverview'></p>
</div>
<div>
<h3>Units</h3>
<table id='unitlst'></table>
</div>
<div>
<h3>Reference Files</h3>
<ul id='ref_files'></ul>
</div>
<div>
<h3>Links</h3>
<ul id='links'></ul>
</div>
<div class='footer'>
Gallifrey 1.0.0<br>
Developed By <a href='mailto:nick.p@iinet.net.au' >Nick Patrikeos</a>.
</div>
</body>
</html>