-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcourses.tmpl
executable file
·66 lines (57 loc) · 1.88 KB
/
courses.tmpl
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Courses for the Plan of Study</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">CS@VT Plan of Study</a>
</div>
</div>
</div>
<div class="container">
<h1>PhD Courses and Areas</h1>
<table id="transfertbl" class="table table-striped table-bordered table-condensed">
<thead>
<tr><th class="col-sm-5">Course</th><th class="col-sm-4">Area</th></tr>
</thead>
<tbody>
<% repeat {courses} %>
<tr>
<td><a href="https://www.cs.vt.edu/graduate/courses/{course}">{course}</a> {title}</td>
<td>{area}</td>
</tr>
<% end %>
</tbody>
</table>
</div> <!-- /container -->
<div id="footer">
<div class="container">
<p class="text-muted credit">CS@VT</p>
</div>
</div>
<!-- Le javascript
================================================== -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
</body>
</html>