19 lines
736 B
HTML
19 lines
736 B
HTML
{% 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 %}
|