Add full url and correct pubDate

This commit is contained in:
Emilio Coppola
2023-01-16 11:51:59 +01:00
parent 2a31034e68
commit e1f9053b17

View File

@@ -15,9 +15,9 @@ permalink: /rss.xml
{% for post in latest_posts limit:24 %}
<item>
<title>{{ post.title }}</title>
<link>{{ post.url }}</link>
<link>https://godotengine.org{{ post.url }}</link>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date: "%a, %B %e %Y %X +0000" }}</pubDate>
<pubDate>{{ post.date | date: "%a, %e %b %Y %X +0000" }}</pubDate>
</item>
{% endfor %}