rar-index-py/flask/templates/home.html
marcel d4016ce80c First functions
Added first functions in backend
The homepage can now show the most recent archives
2023-10-17 18:25:38 +02:00

20 lines
No EOL
468 B
HTML

{% extends "base.html" %}
{% block meta %}
<link rel="stylesheet" href="/static/home.css" />
{% endblock %}
{% block content %}
{% if archives|length > 0 %}
<div class="grid-container">
{% for arch in archives %}
<div class="grid-item clickable"><b>{{arch[0]}}</b></div>
<div class="grid-item"><p>{{arch[1]|spacer}}</p></div>
<div class="grid-item"><p>{{arch[2]|ctime}}</p></div>
{% endfor %}
</div>
{% else %}
<p>No matching archives</p>
{% endif %}
{% endblock %}