btracker/templates/index.html.tera
2025-08-05 13:01:27 +03:00

9 lines
No EOL
204 B
Text

{% extends "layout/default" %}
{% block content %}
{% for torrent in torrents %}
<div>
<a name="{{ torrent.info_hash }}"></a>
<h2>{{ torrent.name }}</h2>
</div>
{% endfor %}
{% endblock content %}