{% set firstCategory = categories.0.category.id|default(null) %}
{% set postsProposition = get_posts(4, 1, null, firstCategory) %}
{% set i = 0 %}
{% if postsProposition.items|length > 1 %}
<section class="container main-blog mb-5 pb-5 pt-4">
<div class="row mb-5 pb-5">
<h2 class="fw-bold f-40 mt-2 mb-5 text-center">Mogą Ci się również spodobać</h2>
{% for post in postsProposition.items|default([]) %}
{% if actualPostId != null and actualPostId != post.id and i < 3 %}
<div class="col-md-4 col-12 blog-item my-3 my-md-0">
<a href="{{ post.page.translations.pl.url|default('#') }}">
<div class="zoom"><img src="{{ (CONST_IMAGE_URL ~ post.postPreview.fileName|default(''))|imagine_filter('full') }}" alt="">
<p>{{ post.translations.pl.head|default('') }}</p>
{% if post.isNews|default(false) %}
<div class="bg-secondary text-white new">new</div>
{% endif %}
</div>
</a>
</div>
{% set i = i + 1 %}
{% endif %}
{% endfor %}
</div>
<div class="text-center">
<a href="{{ blogUrl != '' ? (blogUrl) : '#' }}" class="btn btn-dark">czytaj więcej</a>
</div>
</section>
{% endif %}