summaryrefslogtreecommitdiffstats
path: root/templates/blog/rss.xml
blob: 9cc6df3fc22deba6c07edaf298eaa48392ed0835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>ryuslash.org</title>
  <link href="http://ryuslash.org/feed/rss/" rel="self" />
  <link href="http://ryuslash.org/" />
  <id>http://ryuslash.org/blog/</id>
  <author>
    <name>Tom Willemsen</name>
  </author>
  <updated>2011-10-29T23:16:00+01:00</updated>

  {% for post in postlist %}
  <entry>
    <title>{{ post.subject }}</title>
    <link href="http://ryuslash.org/blog/post/{{ post.pk }}/" />
    <id>http://ryuslash.org/blog/post/{{ post.pk }}/</id>
    <updated>{{ post.postdate|date:"c" }}</updated>
    <content type="xhtml" xml:base="http://ryuslash.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        {{ post.body|linebreaksbr }}
      </div>
    </content>
  </entry>
  {% endfor %}
</feed>