<section class="ac-listing-gallery-container">
<div class="container">
<div class="mb-4" data-aos="fade-up" data-aos-delay="100"><span
class="ac-listing-gallery-title">{{ block.title }}</span>
</div>
<div class="ac-listing-gallery-items pswp-gallery pswp-gallery--single-column" id="article-gallery"
data-aos="fade-up" data-aos-delay="300">
{% set data = block.content | json_decode %}
{% set id = data.id %}
{% set pictures = getPicturesByGalleryId(id) %}
{% set pictureSets = pictures | batch(4, null) %}
{% for set in pictureSets %}
<div class="row">
{% for itm in set %}
{% if itm is not empty %}
<a href="{{ itm.image }}" class="ac-listing-gallery-item col-auto" >
<img loading="lazy" src="{{ itm.image }}" alt="">
</a>
{% endif %}
{% endfor %}
</div>
{% endfor %}
</div>
<div class="d-flex flex-row justify-content-center">
<button onclick="location.href='{{ block.url }}';" class="button article-button">{{"XEM TẤT CẢ" | trans}}
</button>
</div>
</div>
</section>