From 654c6c66d97527e8bf1dd5d394a4442e3b8c9ba4 Mon Sep 17 00:00:00 2001
From: tvluke <tvluke@chaotikum.org>
Date: Thu, 4 Jan 2024 11:11:32 +0100
Subject: [PATCH] date formaat

---
 media_ext.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media_ext.xml b/media_ext.xml
index f4a6acfa..7ce552dc 100644
--- a/media_ext.xml
+++ b/media_ext.xml
@@ -62,8 +62,8 @@ layout: null
 {% if ccontent and ccontent != '' -%}
 <description>{{ccontent}} &#xA;{% for conf in video.conferences %}{% for c in site.conferences -%}{% if conf == c.acronym and c.content != '' -%}{{c.content | strip_html | xml_escape }} &#xA;{% endif -%}{% endfor -%}{% endfor %}{% if video.licence and video.licence  != '' -%}{{video.licence | strip_html | xml_escape }}{% else -%}This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License (CC BY NC ND 4.0). https://creativecommons.org/licenses/by-nc-nd/4.0/{% endif -%}</description>
 {% endif -%}
-            <recDate>{{ recording_date | date_to_rfc822 }}</recDate>
-            <pubDate>{{ video.date | date_to_rfc822 }}</pubDate>
+            <recDate>{{ recording_date | date: '%Y-%m-%d' }}</recDate>
+            <pubDate>{{ video.date | date: '%Y-%m-%d' }}</pubDate>
             <license>{{video.licence}}</license>
             <persons>{{persons}}</persons>
             {% if video.language and video.language  != '' -%}
-- 
GitLab