flask-htmx-board1/templates/board.html
Simple_Not a9cabbe7d8
All checks were successful
continuous-integration/drone/push Build is passing
some structure
2023-07-03 23:18:37 +10:00

38 lines
767 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="content">
{{board_id}}
</div>
<nav>
<a routerLink = "/">Напоминание </a>
<br>
<a routerLink = "/about">О нас </a>
<br>
Доски:
<div class="boards">
<ul>
{% for board in boards %}
<li><a href="{{board}}">/{{board}}</a></li>
{% endfor %}
</ul>
</div>
</nav>
<table class="border-collapse w-small w-2/3 mx-auto">
<thead>
<tr>
<th class="p-3 font-bold uppercase bg-gray-200 text-gray-600 border border-gray-300 hidden lg:table-cell">#</th>
</tr>
</thead>
<tbody id="thread-results">
{% include 'thread.html' %}
</tbody>
</table>
{% endblock content %}