Blame view
local/templates/main/components/bitrix/news.list/tab-clients/template.php
1.38 KB
80576aee7 Интеграция верстк... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<? 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): ?> |
9df36c320 1. Дебаг проблем ... |
17 18 |
<div class="tab-clients__img-box logo-img-box <? ($key > 7) ? $class = 'logo_unvisible' : $class = ''; echo $class; ?>"> <img src="<?= CFile::GetPath($item['PROPERTIES']['ICON_DARK']['VALUE']); ?>" |
80576aee7 Интеграция верстк... |
19 |
class="tab-clients__img-white logo-img-box__grey-light"> |
9df36c320 1. Дебаг проблем ... |
20 |
<img src="<?= CFile::GetPath($item['PROPERTIES']['ICON_LIGHT']['VALUE']); ?>" |
80576aee7 Интеграция верстк... |
21 |
class="tab-clients__img-black logo-img-box__grey-dark"> |
9df36c320 1. Дебаг проблем ... |
22 |
<img src="<?= CFile::GetPath($item['PROPERTIES']['ICON_COLOR_DARK']['VALUE']); ?>" |
80576aee7 Интеграция верстк... |
23 |
class="tab-clients__img-color logo-img-box__color-light"> |
9df36c320 1. Дебаг проблем ... |
24 |
<img src="<?= CFile::GetPath($item['PROPERTIES']['ICON_COLOR_LIGHT']['VALUE']); ?>" |
80576aee7 Интеграция верстк... |
25 26 27 |
class="tab-clients__img-color-white logo-img-box__color-dark"></div> <? endforeach; ?> </div> |
9df36c320 1. Дебаг проблем ... |
28 |
<button class="button button_style_link tab-clients__btn" type="button"> |
80576aee7 Интеграция верстк... |
29 30 |
посмотреть все </button> |