snipt/templates/rss.xml

15 lines
657 B
XML
Raw Normal View History

2012-04-13 20:30:23 -07:00
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>/ {% if public and not public_user %}public{% else %}{{ user.username }}{% endif %}{% if tag %} / {{ tag }}{% endif %} - Snipt</title>
2012-04-23 18:41:16 -07:00
<link>https://snipt.net{{ request.path }}</link>{% for snipt in snipts %}
2012-04-13 20:30:23 -07:00
<item>
<title>{{ snipt.title }}</title>
<link>{{ snipt.get_absolute_url }}</link>
<description><![CDATA[{{ snipt.code }}]]></description>
<pubDate>{{ snipt.created }}</pubDate>
<guid>{{ snipt.id }}</guid>
</item>{% endfor %}
</channel>
</rss>