flask-htmx-board1/templates/main-page.html
Simple_Not 1cc624c4c8
All checks were successful
continuous-integration/drone/push Build is passing
some structure
2023-07-03 23:02:48 +10:00

16 lines
305 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block content %}
<div class="host-id">Вас закинуло сюда: {{host_id}}</div>
<div class="content">
Dobro pozhalovat. AGAIN.
</div>
<ul>
{% for board in boards %}
<li><a href="{{board}}">/{{board}}</a></li>
{% endfor %}
</ul>
{% endblock content %}