init tera layout

This commit is contained in:
yggverse 2025-08-05 13:01:27 +03:00
parent 0d155d6ef2
commit 8a32bdda63
6 changed files with 166 additions and 12 deletions

View file

@ -0,0 +1,9 @@
{% extends "layout/default" %}
{% block content %}
{% for torrent in torrents %}
<div>
<a name="{{ torrent.info_hash }}"></a>
<h2>{{ torrent.name }}</h2>
</div>
{% endfor %}
{% endblock content %}