summaryrefslogtreecommitdiff
path: root/design/templates/feed.xml
blob: 774597678f9db8fff1257aaba70521706b3451a8 (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>Libregraf</title>
		<link>https://libregraf.net/</link>
		<description>Latest posts on libregraf.net</description>
		<language>en-us</language>
        <copyright>Copyright 2011-{% now "Y" %} Libregraf</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>comments@libregraf.net</managingEditor>
		<webMaster>comments@libregraf.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>