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

29 lines
602 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">
Dobro pozhalovat. AGAIN.
</div>
<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>
<img src="http://static.vdk2ch.ru:15555/test-public/sin.jpg">
{% endblock content %}