-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar.html
94 lines (73 loc) · 3.78 KB
/
calendar.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
<!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">
<!-- The above 3 meta tags *must* come first in the head;
any other head content must come *after* these tags -->
<meta name="description" content="Alpha Epsilon Pi Fraternity at Carnegie Mellon University">
<link rel="icon" href="img/favicon.png">
<title>Calendar — AEPi at CMU</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link href="css/main.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand">AEPi at Carnegie Mellon</h3>
<nav>
<ul class="nav masthead-nav">
<li><a href="index.html">Home</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="rush.html">Rush</a></li>
<li><a href="brothers.html">Brothers</a></li>
</ul>
</nav>
</div>
</div>
<div class="inner cover">
<div class="inner cover">
<h1 class="cover-heading">Gold. Blue. Proud.</h1>
<!-- <p class="lead">We are AEPi</p> -->
<p class="lead">
<!-- <iframe src="https://www.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&showTz=0&height=600&wkst=1&bgcolor=%23FFFFFF&src=aviromanoff%40gmail.com&color=%23A32929&ctz=America%2FNew_York" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe> -->
<!-- <iframe src="https://www.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&showTz=0;src=andrew.cmu.edu_mjjq9l3iu1ilgucburi3ga66lc%40group.calendar.google.com&ctz=America/New_York" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe> -->
<iframe src="https://www.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&showTz=0&src=andrew.cmu.edu_mjjq9l3iu1ilgucburi3ga66lc%40group.calendar.google.com&ctz=America/New_York" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
<!-- <a href="#" class="btn btn-lg btn-default">Learn more</a> -->
</p>
</div>
</div>
<div class="mastfoot">
<div class="inner">
<p>© 1907-2015 Alpha Epsilon Pi — Alpha Kappa</p>
</div>
</div>
</div> <!--cover-container-->
</div> <!--site-wrapper-inner-->
</div> <!--site-wrapper-->
<script>
// ¯\_(ツ)_/¯
// This adds an "active" class to the <a> tag corresponding
// to the file we're currently on.
var currentFile = window.location.pathname.split("/").pop() || "index.html";
var navbarItems = [].slice.call(document.getElementsByClassName("masthead-nav")[0].children);
navbarItems.forEach(function(li) {
var anchor = li.children[0];
if (currentFile === anchor.href.split("/").pop()) {
li.classList.add("active");
}
});
</script>
</body>
</html