-
Notifications
You must be signed in to change notification settings - Fork 1
/
schedule.html
83 lines (66 loc) · 3.87 KB
/
schedule.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Schedule | b01lers</title>
<!-- {# <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> #} -->
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.cyborg.min.css" />
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
<link rel="stylesheet" type="text/css" href="/static/css/pygments.css" />
<!-- Include Bootstrap Datepicker -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/css/datepicker.min.css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/css/datepicker3.min.css" />
<script src="/static/js/jquery.min.js"></script>
<script src="/static/js/moment.min.js"></script>
<script src="/static/js/transition.js"></script>
<script src="/static/js/collapse.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<script src="/static/js/bootstrap-datetimepicker.js"></script>
<script src="/static/js/bootstrap-datepicker.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<!-- Static navbar -->
<div class="navbar navbar-default 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-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><img src="/static/images/logo_full.png" alt="b01lers club - Purdue CTF team" title="b01lers club - Purdue CTF team" /></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/schedule.html">Schedule</a></li>
<li><a href="/irc.html">IRC</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</div>
<center>
<div class="row">
<iframe src="https://www.google.com/calendar/embed?showTitle=0&height=500&wkst=1&bgcolor=%23000000&src=gl32llktghjggqmlul6klklgv4%40group.calendar.google.com&color=%23B1440E&ctz=America%2FNew_York" style=" border-width:0; margin:0 auto; display:block;" width="100%" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</center>
<hr>
<footer>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">© b01lers 2015 <a href="/disclaimer.html" target="_blank">Disclaimer</a></div>
<div class="col-md-6 col-sm-6 col-xs-6 text-right"><a href="https://twitter.com/b01lers" target="_blank">@b01lers on twitter</a></div>
</div>
</footer>
</div> <!-- /container -->
</body>
</html>