feed.xml 748 B

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