-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcalendar.html
35 lines (29 loc) · 983 Bytes
/
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
---
layout: default
title: Calendar of Events
permalink: /calendar/
---
<section class="wrapper style5" style="background-color: #2E3842">
<style>
@media only screen and (max-width: 600px) {
.calendar-full {
display: none;
}
.calendar-agenda {
display: inline;
}
}
@media only screen and (min-width: 601px) {
.calendar-full {
display: inline;
}
.calendar-agenda {
display: none;
}
}
</style>
<!-- Add new section here -->
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=Asia%2FSingapore&src=bnVzLmllZWUuaGtuQGdtYWlsLmNvbQ&color=%237986CB&showDate=1&showTitle=0"
style="border:solid 10px #2E3842;" width="100%" height="600px" frameborder="0" scrolling="no"></iframe>
</section>