atom.xml 845 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. layout: nil
  3. ---
  4. <?xml version="1.0"?>
  5. <feed xmlns="http://www.w3.org/2005/Atom">
  6. <title>caryoscelus</title>
  7. <link href="http://caryoscelus.github.io/"/>
  8. <link type="application/atom+xml" rel="self" href="https://caryoscelus.github.io/atom.xml"/>
  9. <updated>{{ site.time | date_to_xmlschema }}</updated>
  10. <id>caryoscelus</id>
  11. <author>
  12. <name>caryoscelus</name>
  13. </author>
  14. {% for post in site.posts %}
  15. <entry>
  16. <id>{{ post.id }}</id>
  17. <link type="text/html" rel="alternate" href="{{ post.url }}"/>
  18. <title>{{ post.title }}</title>
  19. <published>{{ post.date | date_to_xmlschema }}</published>
  20. <updated>{{ post.date | date_to_xmlschema }}</updated>
  21. <author>
  22. <name>caryoscelus</name>
  23. </author>
  24. <content type="html">{{ post.content | xml_escape }}</content>
  25. </entry>
  26. {% endfor %}
  27. </feed>