-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
102 lines (91 loc) · 4.42 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="logo_mod.png">
<title>Bootstrappers Courses</title>
<!-- Bootstrap core CSS -->
<link href="resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap showcase theme -->
<link href="resources/bootstrap/css/showcase/showcase-theme.css" rel="stylesheet">
<style>
.viewPage, .nutshell, .fileDownload {
margin : 2px;
}
.inactive {
pointer-events : none;
}
</style>
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="../index.html">Bootstrappers Home</a></li>
<li class="active"><a href="index.html">Courses Home</a></li>
<li class=""><a href="../cal.html">Calendar</a></li>
<li class="Courses">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Courses<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="courses/python1/index.html">Python 1</a></li>
<li><a href="courses/python2/index.html">Python 2</a></li>
<li><a href="courses/rCourse/index.html">R Course</a></li>
<li><a href="courses/unix/index.html">Unix</a></li>
<li><a href="courses/bedtools/index.html">Bedtools</a></li>
</ul>
</li>
<li class="PastCourses">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">All Past Courses<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li class = ""><a href="pastCourses/python1_2014-12/index.html">Python 1(2014-12)</a></li>
<li class = ""><a href="pastCourses/python2_2015-02/index.html">Python 2(2015-02)</a></li>
<li class = ""><a href="pastCourses/rCourse_2014-09/index.html">R Course(2014-09)</a></li>
<li class = ""><a href="pastCourses/rCourse_2016-04/index.html">R Course(2016-04)</a></li>
<li class = ""><a href="pastCourses/unix_2014-10/index.html">Unix(2014-10)</a></li>
<li class = ""><a href="pastCourses/unix_2015-09/index.html">Unix(2015-09)</a></li>
<li class = ""><a href="pastCourses/bedtools_2015_10/index.html">Bedtools(2015_10)</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container theme-showcase" role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>Bootstrapper Courses</h1>
<p>A Series of introductory programing courses created by the Umass Med Bootstrappers</p>
</div>
<div class="panel panel-primary">
<div class="panel-heading"><h1>Courses</h1></div>
<div class="panel-body">
<ul>
<li><a href="courses/python1/index.html"><big>Python 1</big></a></li>
<li><a href="courses/python2/index.html"><big>Python 2</big></a></li>
<li><a href="courses/rCourse/index.html"><big>R Course</big></a></li>
<li><a href="courses/unix/index.html"><big>Unix</big></a></li>
<li><a href="courses/bedtools/index.html"><big>Bedtools</big></a></li>
</ul>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="resources/bootstrap/js/jquery.min.js"></script>
<script src="resources/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>