flask-htmx-board1/templates/main-page.html
Simple_Not 10ebc6d628
All checks were successful
continuous-integration/drone/push Build is passing
some structure
2023-07-03 22:59:38 +10:00

14 lines
230 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="content">
Dobro pozhalovat. AGAIN.
</div>
<ul>
{% for board in boards %}
<li><a href="{{board}}">/{{board}}</a></li>
{% endfor %}
</ul>
{% endblock content %}