17 lines
470 B
XML
17 lines
470 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<rss version="2.0">
|
||
|
<channel>
|
||
|
<title>Pizza Wednesday Feed</title>
|
||
|
<link>{{ base_url }}</link>
|
||
|
<description>Announcements regarding pizzawednes.day and related services</description>
|
||
|
|
||
|
{% for post in posts %}
|
||
|
<item>
|
||
|
<title>{{ post.title }}</title>
|
||
|
<link>{{ base_url }}{{ post.path }}</link>
|
||
|
<pubDate>{{ post.pub_date.strftime('%a, %d %b %Y %H:%M:%S %z') }}</pubDate>
|
||
|
</item>
|
||
|
{% endfor %}
|
||
|
</channel>
|
||
|
</rss>
|