<h2 class="category-name">Категорія: Війна</h2>
{% for post in site.categories.war %}
{% include posts.html %}
{% endfor %}
posts.html:
<div class="post-list">
{% for post in paginator.posts %}
<div class="post">
<h2 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
{% include post-date.html %}
<p class="post-meta">Категорія: {{ post.categoryalias }}</p>
<img class="post-thumbnail" src="{{ post.thumbnail }}">
<p class="post-meta">{{ post.excerpt }}</p>
<a href="{{ post.url }}" class="post-readmore">Читати далі</a>
</div>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<ul>
{% if paginator.previous_page %}
<li>
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}">Наступна сторінка →</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li>
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}">← Попередня сторінка</a>
</li>
{% endif %}
</ul>
{% endif %}
I’ve done everything and it still renders all posts…
I set categories like categories: [smthng] in the front matter if anything.