mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 04:20:10 +01:00
MG-5
db93df11da
Every markdown file in _events is converted to a single JSON file available under /calendar-data, which is the source of fullcalender
17 lines
252 B
HTML
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 %}
|
|
]
|