35 lines
670 B
HTML
35 lines
670 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="content">
|
|
{{board_id}}
|
|
</div>
|
|
|
|
|
|
<nav>
|
|
<br>
|
|
Доски:
|
|
<div class="boards">
|
|
<ul>
|
|
{% for board in boards %}
|
|
|
|
<li><a href="/boards/{{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 %} |