1
0

atom.xml 796 B

1234567891011121314151617181920212223242526
  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="{{site_url}}/atom.xml" rel="self" />
  6. <link href="{{site_url}}/" />
  7. <id>{{site_url}}/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="{{site_url}}/{{ entry.permalink }}" />
  17. <id>{{site_url}}{{ entry.destination.lstrip('.') }}</id>
  18. <content type="xhtml">
  19. <div xmlns="http://www.w3.org/1999/xhtml">
  20. {{ entry.header.summary }}
  21. <a href="{{site_url}}{{ entry.destination.lstrip('.')}}">continue reading...</a>
  22. </div>
  23. </content>
  24. </entry>
  25. {% endfor %}
  26. </feed>