flask-htmx-board1/templates/board.html
Simple_Not 6c4235bed1
All checks were successful
continuous-integration/drone/push Build is passing
now we counting
2023-07-13 01:05:54 +10:00

27 lines
428 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="content">
<p>Вы тут: /{{board_id}}</p>
</div>
<nav>
<a href="/">glavnaya</a>
<br>
Доски:
<div class="boards">
<ul>
{% for board in boards %}
<li><a href="/boards/{{board}}">/{{board}}</a></li>
{% endfor %}
</ul>
</div>
</nav>
<li>
{% include 'posts.html' %}
{% endblock content %}