summaryrefslogtreecommitdiff
path: root/design/templates/feed.xml
blob: d70604cb5c670bb3e93d542e115851ed7653d262 (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
26
<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by luxpub v2.0 on {% now "D, d M Y H:i:00" %} GMT -->
<rss version="2.0">
	<channel>
		<title>Luxagraf</title>
		<link>http://luxagraf.net/</link>
		<description>Latest posts on luxagraf.net</description>
		<language>en-us</language>
        <copyright>Copyright 2011-{% now "Y" %} Luxagraf</copyright>
		<pubDate>{% now "D, d M Y H:i:00" %} GMT</pubDate>
		<lastBuildDate>{% now "D, d M Y H:i:00" %} GMT</lastBuildDate>
		<docs>http://cyber.law.harvard.edu/rss/rss.html</docs>
		<generator>IPpub v2.0</generator>
		<managingEditor>contact@luxagraf.net</managingEditor>
		<webMaster>contact@luxagraf.net</webMaster>{% for object in object_list %}
		<item>
			<title>{{object.title|escape}}</title>
            <link>{{SITE_URL}}{{object.get_absolute_url}}</link>
            <guid>{{SITE_URL}}{{object.get_absolute_url}}</guid>
			<description>
		    	{{object.body_html|escape}}	
			</description>
			<pubDate>{{object.pub_date|date:'D, d M Y H:i:00'}} EST</pubDate>
        </item>{% endfor %}
    </channel>
</rss>