<div class="blog__list">
{% for post in posts %}
<div class="blog__entry">
<a href="{{ path('blog_post', {slug: post.slug}) }}" class="entry__lnk"></a>
<img src="{{ vich_uploader_asset(post, 'posterImageFile') }}" alt="{{ post.title }}">
<div class="entry__info">
<div class="entry__top">
<div class="entry__date">{{ post.createdAt|date('d.m.Y') }}</div>
<div class="entry__tags">
{% for tag in post.tags %}
<a href="{{ path('blog_tag', {slug: tag.slug}) }}" class="tags__lnk">#{{ tag.name }}</a>
{% endfor %}
</div>
</div>
<div class="entry__title">{{ post.title }}</div>
<p>{{ post.shortDescription }}</p>
</div>
</div>
{% endfor %}
</div>
{% if current_page < page_count %}
<div class="blog__more-btn">
<a href="{{ next_page_url }}" data-method="post" class="btn btn_blue btn-load">Загрузить еще</a>
</div>
{% endif %}