flask-htmx-board1/templates/main-page.html

29 lines
602 B
HTML
Raw Normal View History

2023-07-03 22:41:49 +10:00
{% extends "base.html" %}
{% block content %}
2023-07-03 23:02:48 +10:00
2023-07-03 22:41:49 +10:00
<div class="content">
2023-07-03 23:02:48 +10:00
Dobro pozhalovat. AGAIN.
2023-07-03 22:41:49 +10:00
</div>
2023-07-03 23:09:42 +10:00
<nav>
<a routerLink = "/">Напоминание </a>
<br>
<a routerLink = "/about">О нас </a>
<br>
Доски:
<div class="boards">
<ul>
{% for board in boards %}
<div class="host-id">Вас закинуло сюда: {{host_id}}</div>
<li><a href="{{board}}">/{{board}}</a></li>
{% endfor %}
</ul>
</div>
</nav>
2023-07-03 23:08:17 +10:00
<img src="http://static.vdk2ch.ru:15555/test-public/sin.jpg">
2023-07-03 23:09:42 +10:00
{% endblock content %}