You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rss.xml 1004B

1234567891011121314151617181920
  1. <rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  2. <channel>
  3. <title>{{ config.title }}</title>
  4. <link>{{ config.base_url | safe }}</link>
  5. <description>{{ config.description }}</description>
  6. <generator>Zola</generator>
  7. <language>{{ config.default_language }}</language>
  8. <atom:link href="{{ feed_url | safe }}" rel="self" type="application/rss+xml"/>
  9. <lastBuildDate>{{ last_build_date | date(format="%a, %d %b %Y %H:%M:%S %z") }}</lastBuildDate>
  10. {% for page in pages %}
  11. <item>
  12. <title>{{ page.title }}</title>
  13. <pubDate>{{ page.date | date(format="%a, %d %b %Y %H:%M:%S %z") }}</pubDate>
  14. <link>{{ page.permalink | safe }}</link>
  15. <guid>{{ page.permalink | safe }}</guid>
  16. <description>{% if page.summary %}{{ page.summary }}{% else %}{{ page.content }}{% endif %}</description>
  17. </item>
  18. {% endfor %}
  19. </channel>
  20. </rss>