template.php
1.21 KB
<? if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die();
/** @var array $arParams */
/** @var array $arResult */
/** @global CMain $APPLICATION */
/** @global CUser $USER */
/** @global CDatabase $DB */
/** @var CBitrixComponentTemplate $this */
/** @var string $templateName */
/** @var string $templateFile */
/** @var string $templateFolder */
/** @var string $componentPath */
/** @var CBitrixComponent $component */
$this->setFrameMode(true);
?>
<div class="tab-clients">
<? foreach ($arResult["ITEMS"] as $key => $item): ?>
<div class="tab-clients__img-box logo-img-box">
<img src="<?= $item['PREVIEW_PICTURE']['SRC'] ?>"
class="tab-clients__img-white logo-img-box__grey-light">
<img src="<?= $item['PREVIEW_PICTURE']['SRC'] ?>"
class="tab-clients__img-black logo-img-box__grey-dark">
<img src="<?= $item['DETAIL_PICTURE']['SRC'] ?>"
class="tab-clients__img-color logo-img-box__color-light">
<img src="<?= $item['DETAIL_PICTURE']['SRC'] ?>"
class="tab-clients__img-color-white logo-img-box__color-dark"></div>
<? endforeach; ?>
</div>
<button class="button button_style_link tab-clients__btn" type="button" style="display: none;">
посмотреть все
</button>