template.php
681 Bytes
<?
/** @var $item \SH\Entities\Project */
if(empty($arResult['ITEMS'])) return;
?>
<nav class="houses-list">
<? foreach($arResult['ITEMS'] as $item) { ?>
<a href="<?= $item->getUrl() ?>" class="houses-list-item js-house" target="_blank">
<span class="houses-list-item-wr"<? if($img = $item->getPreviewImage(true)) { ?> style="background-image: url(<?= $img ?>)"<? } ?>>
<span class="houses-list-item-content">
<span class="houses-list-item-icon"><img src="<?= $item->getIcon() ?>" alt=""/></span>
<span class="houses-list-item-title"><?= $item->getName() ?></span>
</span>
</span>
</a>
<? } ?>
</nav>