rssto/crates/http/templates/index.html.tera
2026-01-10 17:53:48 +02:00

21 lines
No EOL
633 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>
{{ row.time }}
</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 }} total)
</span>
{% endif %}
{% endblock content %}