template.php
653 Bytes
<link rel="stylesheet" href="/css/owl.theme.css">
<link rel="stylesheet" href="/css/owl.carousel.css">
<?
/** @var \Cpeople\Classes\Block\Object $item */
?>
<? if($arResult['ITEM'] && ($images = $arResult['ITEM']->getImages('IMAGES'))) { ?>
<div class='stages_slider_wrap'>
<div id="cursor">
<div id="cursor_inside" class="right_cursor"></div>
</div>
<div class="gallery project_slider js-full stages_slider">
<? foreach($images as $image) { ?>
<div style='background-image : url("<?= $image->getThumbUrl(array()) ?>")' >
<div class="stage_item_desc"><?=$image->getDescription();?></div>
</div>
<? } ?>
</div>
</div>
<? } ?>