mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 12:20:12 +01:00
18 lines
252 B
HTML
18 lines
252 B
HTML
|
---
|
||
|
layout:
|
||
|
title:
|
||
|
permalink: /calendar-data/
|
||
|
---
|
||
|
|
||
|
[
|
||
|
{% for event in site.events %}
|
||
|
{
|
||
|
"title":"{{event.title}}",
|
||
|
"start": "{{event.event_date}}",
|
||
|
"allDay":true,
|
||
|
"url":"{{event.url}}"
|
||
|
}
|
||
|
{%unless forloop.last %},{%endunless%}
|
||
|
{% endfor %}
|
||
|
]
|