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.

21 lines
929B

  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 }}</link>
  5. <description>{{ config.description }}</description>
  6. <generator>Gutenberg</generator>
  7. <language>{{ config.language_code }}</language>
  8. <atom:link href="{{ feed_url }}" 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 }}</link>
  15. <guid>{{ page.permalink }}</guid>
  16. <description>"{{ page.content | escape }}"</description>
  17. </item>
  18. {% endfor %}
  19. </channel>
  20. </rss>