-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar.html
executable file
·67 lines (60 loc) · 1.42 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
<html>
<head>
<style type="text/css">
body { background-color: #f99b0c;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
h1,h2,h3 {
color: #fff;
font-family: Bitstream Charter, Georgia, Times, serif;
font-weight: bold;
text-align: center;
margin: 0;
}
h1 {
line-height: 48pt;
font-size: 48pt;
}
h2 {
line-height: 28pt;
font-size: 28pt;
}
h3 {
line-height: 20pt;
font-size: 20pt;
font-style: italic;
}
#calendar {
height: 760px;
width: 90%;
margin: auto;
}
.fc-header {
display: none;
}
</style>
<link rel='stylesheet' type='text/css' href='js/fullcalendar/fullcalendar.css' />
<script type='text/javascript' src="js/lib/jquery.min.js"></script>
<script type='text/javascript' src="js/fullcalendar/fullcalendar.js"></script>
<script type='text/javascript' src='js/fullcalendar/gcal.js'></script>
</head>
<body>
<h2>HeatSync Labs Public Calendar</h2>
<h3>You're invited!</h3>
<br/>
<div id="calendar"></div>
<script type="text/javascript">
$(document).ready(function() {
$('#calendar').fullCalendar({
events: 'https://www.google.com/calendar/feeds/heatsynclabs.org_p9rcn09d64q56m7rg07jptmrqc%40group.calendar.google.com/public/basic',
eventColor: '#696969',
weekMode: 'liquid',
height: 680,
timeFormat: 'h(:mm)t{ - h(:mm)t}'
});
});
</script>
</body>
</html>