Blame view

local/templates/main/components/bitrix/news.list/tab-clients/template.php 1.21 KB
80576aee7   Дмитрий Типикин   Интеграция верстк...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  <? 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>