flask-blog/templates/rss.html

23 lines
672 B
HTML
Raw Normal View History

2023-08-18 15:24:47 +00:00
<?xml version="1.0" ?>
<rss version="2.0">
<channel>
<title>blog for mcottondesign.com</title>
<description>blog for mcottondesign.com</description>
<link>http://mcottondesign.com</link>
{% for p in posts %}
<item>
<title>{{ p.title }}</title>
<description><![CDATA[{{ p.content|safe }}]]></description>
<link>http://mcottondesign3.appspot.com/post/{{ p.key }}</link>
<guid>http://mcottondesign3.appspot.com/post/{{ p.key }}</guid>
<pubDate>{{ p.date|date:"D, d M Y H:i:s O" }}</pubDate>
<author>mcotton@mcottondesign.com (Mark Cotton)</author>
</item>
{% endfor %}
</channel>
</rss>