Update UI and migrations, fix dockerfile

This commit is contained in:
Your Name
2026-07-18 21:29:05 +05:00
parent 580c75cbf6
commit 26ef145ccf
95 changed files with 9541 additions and 111 deletions
+18
View File
@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% from "_article_rows.html" import row %}
{% block content %}
<section class="feed-shell taxonomy-shell">
<header class="page-heading taxonomy-heading">
<p>{{ taxonomy_label }}</p>
<h1>{{ heading }}</h1>
</header>
{% if articles %}
<div class="feed-list feed-list-top">
{% for article in articles %}{{ row(article) }}{% endfor %}
</div>
{% include "_pagination.html" %}
{% else %}
<div class="empty-state"><h2>Публикаций пока нет</h2><p>Новые материалы появятся здесь после публикации.</p><a href="/">Вернуться в ленту</a></div>
{% endif %}
</section>
{% endblock %}