trimill.xyz/flaskr/templates/rss.xml

20 lines
728 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Blog™</title>
<link>https://trimill.xyz/blog/</link>
<description>Blog™</description>
<language>en</language>
<pubDate>{{ data.blogposts[0].timestamp.strftime("%a, %d %b %Y %H:%M:%S %z") }}</pubDate>
{% for post in data.blogposts %}
<item>
<title>{{ post.title }}</title>
<link>https://trimill.xyz/{{ post.url }}</link>
<description>{{ post.desc }}</description>
<pubDate>{{ post.timestamp.strftime("%a, %d %b %Y %H:%M:%S %z") }}</pubDate>
<guid>https://trimill.xyz/{{ post.url }}</guid>
</item>
{% endfor %}
</channel>
</rss>