aboutsummaryrefslogtreecommitdiffstats
path: root/templates/rss.xml
blob: d0e7caae0ad8ca4567a6f51e6b2856c332d1620f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<description>Actualités de la famille</description>
<link>http://famille.horel.org</link>
<title>Actualités de la la famille</title>

{% for news in news %}
<item>
<title>{{news.title}}</title>
<author>{{news.name}}</author>
<link>http://famille.horel.org{{url_for('show_news', news_id=news.id)}}</link>
<description>{{news.content_cache}}</description>
<pubDate>{{news.date}}</pubDate>
<guid>{{news.id}}</guid>
</item>
{% endfor %}
</channel>
</rss>