ethertoff
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

rss.xml
application/xml

Download raw (559 bytes)

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
{% load wikify %}
<channel>
	<title>{{ site_name }}</title>
	<link>{{ SITE_DOMAIN }}</link>
	<description>Recent activities of this Ethertoff instance.</description>

	{% for pad in pads|slice:":10" %}
		<item>
			<title>{{ pad.display_slug|dewikify }}</title>
			<link>{{ SITE_DOMAIN }}{% url 'pad-read' 'r' pad.display_slug %}</link>
			<guid>{{ SITE_DOMAIN }}{% url 'pad-read' 'r' pad.display_slug %}</guid>
			<pubDate>{{ pad.getLastEdited }}</pubDate>
		</item>
	{% endfor %}

</channel>
</rss>