www.netz39.de/calendar-data.html
MG-5 db93df11da Add built-in calender by using fullcalendar.io
Every markdown file in _events is converted to a single JSON file available under /calendar-data, which is the source of fullcalender
2023-10-20 14:22:48 +02:00

17 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 %}
]