mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-12 22:06:55 +02:00
22 lines
679 B
XML
22 lines
679 B
XML
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
|
|
<channel>
|
|
<title>{{ config.SITE_NAME }} Torrent File RSS (No magnets)</title>
|
|
<description>
|
|
RSS Feed for {{ term }}
|
|
</description>
|
|
<link>{{ site_url }}</link>
|
|
<atom:link href="{{ site_url }}rss" rel="self" type="application/rss+xml" />
|
|
{% for torrent in query %}
|
|
{% if torrent.has_torrent %}
|
|
<item>
|
|
<title>{{ torrent.display_name }}</title>
|
|
<link>
|
|
{{ site_url }}view/{{ torrent.id }}/torrent
|
|
</link>
|
|
<guid isPermaLink="true">{{ site_url }}view/{{ torrent.id }}</guid>
|
|
<pubDate>{{ torrent.created_time|rfc822 }}</pubDate>
|
|
</item>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|