feed.xml 727 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  3. <channel>
  4. <title>{{ site.title }}</title>
  5. <description>{{ site.description }}</description>
  6. <link>{{ site.BASE_PATH }}/</link>
  7. <atom:link href="{{ site.BASE_PATH }}/{{ site.rss_path }}" rel="self" type="application/rss+xml" />
  8. {% for post in site.posts limit:10 %}
  9. <item>
  10. <title>{{ post.title }}</title>
  11. <description>{{ post.content | xml_escape }}</description>
  12. <pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
  13. <link>{{ site.BASE_PATH }}{{ post.url }}</link>
  14. <guid isPermaLink="true">{{ site.BASE_PATH }}{{ post.url }}</guid>
  15. </item>
  16. {% endfor %}
  17. </channel>
  18. </rss>