-
Notifications
You must be signed in to change notification settings - Fork 1
/
events_new.html
33 lines (31 loc) · 1.26 KB
/
events_new.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
---
layout: default
title: events
---
Within AFR, events are regularly organized, including a weekly team meeting at Cumulus Park, as well as frequent meet-ups.
<br/>
<a href="https://calendar.google.com/calendar/ical/rjncg1frrlmi9o3ocnf0gvquas%40group.calendar.google.com/public/basic.ics" target="_blank">Subscribe to our calendar</a> and do not miss any event.
<ul id="events-upcoming"></ul>
<ul id="events-past"></ul>
<!-- Source: https://github.com/MilanLund/FormatGoogleCalendar -->
<script src="{{ base.url | prepend: site.url }}/assets/js/format-google-calendar.min.js"></script>
<script>
formatGoogleCalendar.init({
calendarUrl: 'https://www.googleapis.com/calendar/v3/calendars/[email protected]/events?key=AIzaSyCWtx_CJRcBN9OcuY9XHANYPzN0hK_vVUU',
past: true,
upcoming: true,
sameDayTimes: true,
dayNames: true,
// pastTopN: -1,
// upcomingTopN: 3,
itemsTagName: 'li',
upcomingSelector: '#events-upcoming',
pastSelector: '#events-past',
recurringEvents: true,
upcomingHeading: '<h3>Upcoming events</h3>',
pastHeading: '<h3>Past events</h3>',
format: ['*date*', ': <i>', '*summary*', '</i>. ', '*description*', ' in ', '*location*'],
// timeMin: '2016-06-03T10:00:00-07:00',
// timeMax: '2020-06-03T10:00:00-07:00'
});
</script>