Initial RAA parser poster copy

This commit is contained in:
Your Name
2026-08-03 16:18:56 +05:00
commit d01890ff2c
148 changed files with 18924 additions and 0 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 %}