<div id="posts-container" class="site_tiles_wrapper">
{% for post in posts %}
{% if post.postType == postTypeSocialInvestment %}
<a href="{{ path('founders_investment_social_single', {category: post.category.url, url: post.url }) }}" class="site_tiles_box">
<div class="tiles_img_wrapper">
<img class="tiles_img" src="{{ sonata_path(post.getImagePreview(app.request.locale), 'big') }}" alt="{{ post.title }}">
<span class="tiles_img_name">{{ post.getCategory }}</span>
</div>
<p class="tiles_data">{{ post.created|date("d.m.Y") }}</p>
<p class="tiles_text">{{ post.title }}</p>
</a>
{% else %}
<a href="{{ path('founders_media_posts_single', {category: post.getCategoryUrlById, url: post.url }) }}" class="site_tiles_box">
<div class="tiles_img_wrapper">
<img class="tiles_img" src="{{ sonata_path(post.getImagePreview(app.request.locale), 'big') }}" alt="{{ post.title }}">
<span class="tiles_img_name">{{ post.getCategoryTitleByTypeId }}</span>
</div>
<p class="tiles_data">{{ post.created|date("d.m.Y") }}</p>
<p class="tiles_text">{{ post.title }}</p>
</a>
{% endif %}
{% endfor %}
</div>