atom.xml 695 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom">
  3. <title>Oz's Blog</title>
  4. <subtitle>Oz's weblog</subtitle>
  5. <link href="http://oz123.github.com/atom.xml" rel="self" />
  6. <link href="http://oz123.github.com/" />
  7. <id>http://oz123.github.com/atom.xml</id>
  8. <updated>{{ last_build }}</updated>
  9. <author>
  10. <name>Oz Nahum Tiram</name>
  11. <email>nahumoz@gmail.com</email>
  12. </author>
  13. {% for entry in entries %}
  14. <entry>
  15. <title>{{ entry.title }}</title>
  16. <link href="{{ entry.permalink }}" />
  17. <id>{{ entry.destination }}</id>
  18. <content type="xhtml">
  19. <div xmlns="http://www.w3.org/1999/xhtml">{{ entry.summary_atom }}</div>
  20. </content>
  21. </entry>
  22. {% endfor %}
  23. </feed>