2017-05-12 20:51:49 +02:00
|
|
|
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
|
|
|
|
<channel>
|
|
|
|
<title>{{ config.SITE_NAME }} Torrent File RSS (No magnets)</title>
|
2017-05-13 09:06:31 +03:00
|
|
|
<description>RSS Feed for {{ term }}</description>
|
2017-05-13 01:59:52 +02:00
|
|
|
<link>{{ url_for('home', _external=True) }}</link>
|
|
|
|
<atom:link href="{{ url_for('home', page='rss', _external=True) }}" rel="self" type="application/rss+xml" />
|
2017-05-12 20:51:49 +02:00
|
|
|
{% for torrent in query %}
|
|
|
|
{% if torrent.has_torrent %}
|
|
|
|
<item>
|
|
|
|
<title>{{ torrent.display_name }}</title>
|
2017-05-13 06:23:58 +03:00
|
|
|
<link>{{ url_for('download_torrent', torrent_id=torrent.id, _external=True) }}</link>
|
2017-05-13 01:59:52 +02:00
|
|
|
<guid isPermaLink="true">{{ url_for('view_torrent', torrent_id=torrent.id, _external=True) }}</guid>
|
2017-05-12 20:51:49 +02:00
|
|
|
<pubDate>{{ torrent.created_time|rfc822 }}</pubDate>
|
|
|
|
</item>
|
2017-05-13 16:14:00 +02:00
|
|
|
{% else %}
|
|
|
|
<item>
|
|
|
|
<title>{{ torrent.display_name }}</title>
|
|
|
|
<link>{{ torrent.magnet_uri }}</link>
|
|
|
|
<guid isPermaLink="true">{{ url_for('view_torrent', torrent_id=torrent.id, _external=True) }}</guid>
|
|
|
|
<pubDate>{{ torrent.created_time|rfc822 }}</pubDate>
|
|
|
|
</item>
|
2017-05-12 20:51:49 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</channel>
|
|
|
|
</rss>
|