3 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4 xmlns:dc="http://purl.org/dc/elements/1.1/"
5 xmlns:foaf="http://xmlns.com/foaf/0.1/"
6 xmlns:content="http://purl.org/rss/1.0/modules/content/"
7 xmlns="http://purl.org/rss/1.0/"
9 <channel rdf:about="{{ link }}">
10 <title>{{ name }}</title>
11 <link>{{ link }}</link>
12 <description>{{ name }} - {{ link }}</description>
15 <rdf:Seq> {% for item in Items %}
16 <rdf:li rdf:resource="{{ item.id }}"/>{% endfor %}
21 {% for item in Items %}
22 <item rdf:about="{{ item.id }}">
23 <title>{{ item.channel_name }}{% if item.title %}: {{ item.title_plain }}{% endif %}</title>
24 <link>{{ item.link }}</link>
25 {% if item.content %} <content:encoded>{{ item.content }}</content:encoded> {% endif %}
26 <dc:date>{{ item.date_iso }}</dc:date>
27 <dc:creator>{% firstof item.author_name item.channel_author_name item.channel_name %}</dc:creator>