public
Description: A Social backchannel application
Homepage: http://onelinr.com
Clone URL: git://github.com/ericw/onelinr.git
onelinr / feed.html
100644 25 lines (19 sloc) 0.638 kb
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"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
{% load markup %}
  
<title>onelinr</title>
<link>http://onelinr.com/</link>
<description>A feed of all recent onelinrs</description>
<generator>http://onelinr.com/</generator>
 
{% for post in posts %}
<item>
<title>{{ post.text }}</title>
 
<description><![CDATA[{{post.text|textile }}]]></description>
<content:encoded><![CDATA[{{post.text|textile }}]]></content:encoded>
 
<pubDate>{{ post.date_posted|date:"r" }}</pubDate>
<author>nobody@onelinr.com (nobody)</author>
</item>
{% endfor %}
 
</channel>
</rss>