atom.xml (24 lines of code) (raw):

--- layout: null --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>Apache Wicket</title> <link href="http://wicket.apache.org/atom.xml" rel="self"/> <link href="http://wicket.apache.org/"/> <updated>{{ site.time | date_to_xmlschema }}</updated> <id>http://wicket.apache.org/</id> <author> <name>Apache Wicket</name> <email>dev@wicket.apache.org</email> </author> {% for post in site.posts limit:10 %} <entry> <title>{{ post.title }}</title> <link href="http://wicket.apache.org{{ post.url }}"/> <updated>{{ post.date | date_to_xmlschema }}</updated> <id>http://wicket.apache.org{{ post.id }}</id> <content type="html">{{ post.content | xml_escape }}</content> </entry> {% endfor %} </feed>