{% if medias is not empty %}
<section class="latest-portfolio-area">
<div class="container">
<div class="sec-title text-center">
<div class="big-title">
<h2>{{ 'app.gallery.title'|trans }}</h2>
</div>
<div class="border-box">
<span class="linetop"></span>
<span class="linebottom"></span>
</div>
</div>
<div class="row masonary-layout">
{% for media in medias %}
{% if media.image is not empty or media.video is not empty %}
{% include 'front/gallery/media.html.twig' with {'media': media} %}
{% endif %}
{% endfor %}
</div>
<div class="row">
<div class="col-xl-12">
<div class="all-portfolio-button text-center">
<a class="btn-one" href="{{ path('front_gallery_index') }}">
<span class="txt">{{ 'app.gallery.view_more'|trans }}</span>
</a>
</div>
</div>
</div>
</div>
</section>
{% endif %}