-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.html
More file actions
82 lines (70 loc) · 4.03 KB
/
calendar.html
File metadata and controls
82 lines (70 loc) · 4.03 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Main page for Troop 53">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>
Calendar
</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.brown-red.min.css">
<link rel="stylesheet" href="stylesheets/app.css">
<style>
</style>
<link rel="icon" type="image/vnd.microsoft.icon" href="http://www.pacunits.org/t53/favicon.ico">
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--fixed-drawer">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">BSA Troop 53</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="calendar.html">Calendar</a>
<a class="mdl-navigation__link" href="resources.html">Resources</a>
<a class="mdl-navigation__link" href="contact.html">Contact Troop 53</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Troop 53</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.html">
<i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">home</i>Home</a>
<a class="mdl-navigation__link" href="calendar.html">
<i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">event</i>Calendar</a>
<a class="mdl-navigation__link" href="leaders.html">
<i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">supervisor_account</i>Adult Leaders</a>
<a class="mdl-navigation__link" href="eagles.html">
<i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">face</i>Eagle Scouts</a>
<a class="mdl-navigation__link" href="about.html">
<i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">info</i>About Troop 53</a>
<a class="mdl-navigation__link" href="resources.html">
<i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">folder</i>Resources</a>
<a class="mdl-navigation__link" href="contact.html">
<i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">question_answer</i>Contact Troop 53</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="pageBody">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--2-col"></div>
<div class="mdl-cell mdl-cell--8-col">
<div class="texts">
<h3></h3>
<iframe src="https://calendar.google.com/calendar/embed?src=sahdeafo8sgihvvjjkh9qg6ut0%40group.calendar.google.com&ctz=America%2FChicago" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
<footer></footer>
</div>
</div>
<div class="mdl-cell mdl-cell--2-col"></div>
</div>
</main>
</div>
</body>
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</html>