ical -------- This plugin read the calendar defined in the page metadata : calendar : with:: :calendar: /path/to/your/ics/file Example of code that can be added in page template :: {% if page.calendar %}
{% for vevent in events[page.slug] %}
{{ vevent.summary }}
{{ vevent.description|replace('\n\n', '
') }}
{{ vevent.dtstart }}
{{ vevent.dtend }}
{% endfor %}
{% endif %} this plugins needs icalendar module installed:: pip install icalendar