d8-calendar-ror/templates/calendar.ics.twig

18 lines
529 B
Twig
Raw Normal View History

2018-10-08 11:29:39 +02:00
BEGIN:VCALENDAR
PRODID:drupal-calendar-ror
VERSION:2.0
{% for nid, node in ror.calendar.nodes %}
BEGIN:VEVENT
SUMMARY:{{node.title.0.value}}
UID:node-{{node.nid.0.value}}@www.ondarossa.info
2018-11-04 11:45:08 +01:00
DTSTAMP:{{node.created.0.value|date("Ymd\\THis")}}Z
DTSTART:{{node.field_data_evento.0.value|date("Ymd\\THis")}}Z
2018-11-04 13:03:18 +01:00
LOCATION:{{node.field_luogo.0.value}}
DURATION:PT1H
DTEND:{{node.field_data_evento.0.value|date_modify("+1 hour")|date("Ymd\\THis")}}Z
URL:http://www.ondarossa.info{{node.path.0.alias}}
2018-10-08 11:29:39 +02:00
END:VEVENT
{% endfor %}
END:VCALENDAR