<section class="komili-home-blog">
<div class="komili-wrapper">
<h2 class="text-center bold text-color-p">BLOG</h2>
<ul class="komili-home-blog-posts">
{% for blog in blogPaginator.result %}
<li>
<a href="{{ path('blog_detail', {'titleSlug': blog.slug }) }}">
<figure class="mb-16">
<img src="{{ blog.image.url }}" alt="{{ blog.title }}" loading="lazy" width="350"
height="350">
</figure>
<h4 class="h6 bold text-color-p mb-10">{{ blog.title }}</h4>
<p class="text-14 mb-0 text-black">{{ blog.shortContent }}</p>
</a>
</li>
{% endfor %}
</ul>
<div class="text-center mt-60">
<a href="{{ path('blog') }}" class="btn color-p">{{ 'ALL BLOG POSTS'|trans }}</a>
</div>
</div>
</section>