julien ortet 71db23cd97 adding ical plugin преди 11 години
..
Readme.rst 71db23cd97 adding ical plugin преди 11 години
__init__.py 71db23cd97 adding ical plugin преди 11 години
ical.py 71db23cd97 adding ical plugin преди 11 години

Readme.rst

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 }}

See more

{% endfor %}

{% endif %}

this plugins needs icalendar module installed::

pip install icalendar