1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml
- version="1.0" encoding="utf-8"?>
- <rss version="2.0"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:content="http://purl.org/rss/1.0/modules/content/"
- >
- <channel xml:lang="es">
- <title>Noticias rmgss.net</title>
- <link>https://www.rmgss.net/rss</link>
- <description>Sitio personal de Rodrigo Garcia</description>
- <language>es</language>
- <generator>python Flask - Jinja2</generator>
- {% for entry in contents %}
- <item xml:lang="es">
- <title>{{ entry.title }}</title>
- <link>{{ entry.link }}</link>
- <guid isPermaLink="true">{{ entry.id }}</guid>
- <dc:date>{{ entry.updated }}</dc:date>
- <dc:format>text/html</dc:format>
- <dc:creator>{{ entry.author }}</dc:creator>
- <description>
- {% for cat in entry.category %}
- {{ cat }}
- {% if loop.index != entry.category|length %}
- ,
- {% endif %}
- {% endfor %}
- </description>
- <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/">
- <![CDATA[{{ entry.content|safe }}]]>
- </content:encoded>
-
- </item>
- {% endfor %}
- </channel>
- </rss>
|