mirror of
https://github.com/YGGverse/rssto.git
synced 2026-03-31 17:15:29 +00:00
24 lines
No EOL
805 B
Text
24 lines
No EOL
805 B
Text
{% extends "layout" %}
|
|
{% block content %}
|
|
{% if rows %}
|
|
{% for row in rows %}
|
|
<div>
|
|
<a name="{{ row.content_id }}"></a>
|
|
<h2><a href="{{ row.content_id }}">{{ row.title }}</a></h2>
|
|
{% if row.time %}<p>{{ row.time }}</p>{% endif %}
|
|
<div>
|
|
{{ row.description | safe }}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% else %}
|
|
<div>Nothing.</div>
|
|
{% endif %}
|
|
{% if next %}<a href="{{ next }}">Next</a>{% endif %}
|
|
{% if back %}<a href="{{ back }}">Back</a>{% endif %}
|
|
{% if total %}
|
|
<span>
|
|
Page {{ page }} / {{ pages }} ({{ total }} torrent{{ total | pluralize(plural="s") }} total)
|
|
</span>
|
|
{% endif %}
|
|
{% endblock content %} |