Fixes date and removes syndication

Corrects the event date to a past date.

Removes the syndication and comments section from the event files.
This commit is contained in:
fundor333
2025-09-30 01:28:22 +02:00
parent 7422c421b6
commit 9204238e2e
17 changed files with 162 additions and 127 deletions

View File

@@ -47,7 +47,7 @@ def fetch_event(event_id):
def convert_json_to_post(data):
# convert the json to a markdown post following the format in content/event
now = datetime.datetime.now(datetime.UTC)
now = datetime.datetime.now(datetime.UTC) - datetime.timedelta(days=36500)
event = data["data"]["event"]
title = event["title"]