File: //home/artinside/sites.artinside.com.br/iande/themes/web/views/brands.php
<div id="section-examples" class="section page-section bg-white m-0" style="padding-bottom: 0">
<div class="row justify-content-center mb-0">
<div class="col-md-10 text-center">
<span class="text-primary small mb-2 d-inline-block"
style="--cnvs-font-size-small: 1rem">SOBRE</span>
<h2 class="fs-1 mb-4 font-extra-large text-secondary lh-1">Clientes e <span class="text-primary">Parceiros</span></h2>
</div>
</div>
<?php if(brands() != ""):?>
<div id="oc-clients" class="section bg-transparent mt-0 owl-carousel owl-carousel-full image-carousel footer-stick carousel-widget mt-0" data-margin="30" data-loop="true" data-nav="true" data-autoplay="3000" data-pagi="true" data-items-xs="2" data-items-sm="2" data-items-md="3" data-items-lg="4" data-items-xl="5" data-items-xxl="7">
<?php foreach(brands() as $brand): ?>
<div class="oc-item">
<a href="#">
<img src="<?= image($brand->cover, 500)?>" alt="<?= $brand->title ?>">
</a>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>
</div>