2023-11-01 19:15:27 +03:00

54 lines
2.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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);
?>
<? $colors = ["#1C01A9", "#A8026B", "#04A8A4", ]; ?>
<section id="main_slider">
<div class="container">
<div class="main_slider_swiper">
<p class="slider_active_title"><?= str_replace("₽", "<span style='font-family: montserrat; font-weight: 200;'>₽</span>", $arResult['SLIDES'][0]['NAME']); ?></p>
</div>
<div class="slider_list">
<div class="scrolled">
<? $c = 0; ?>
<? foreach($arResult['SLIDES'] AS $SLIDE): ?>
<div
id="slider_button_<?= $SLIDE['ID']; ?>"
class="slider_item erid"
data-title="<?= str_replace("₽", "<span style='font-family: montserrat; font-weight: 200;'>₽</span>", $SLIDE['NAME']); ?>"
style="color: <?= $colors[$c]; ?>;"
data-image="<?= $SLIDE['DETAIL_PICTURE']; ?>"
data-tb-image="<?= $SLIDE['DETAIL_PICTURE']; ?>"
data-sm-image="<?= $SLIDE['PREVIEW_PICTURE']; ?>"
data-erid="<?= !isset($_GET['advertise']) ? $SLIDE['PROPERTIES']['ADVERTISING_ERIR']['VALUE'] : ""; ?>"
data-creative="<?= $SLIDE['PROPERTIES']['ADVERTISING_SAMPLE_ID']['VALUE']; ?>"
>
<p class="item_name"><?= $SLIDE['PROPERTIES']['TAGLINE']['VALUE']; ?></p>
<span href="<?= $SLIDE['PROPERTIES']['URL']['VALUE']; ?>" class="item_link">Подробнее</span>
<a href="<?= $SLIDE['PROPERTIES']['URL']['VALUE']; ?>" class="item_link"></a>
</div>
<? if($c === 2) { $c = 0; } else { $c++; } ?>
<? endforeach; ?>
</div>
<div class="slider_navto">
<a href="#"></a>
</div>
</div>
</div>
<img src="" class="main_slider-image" alt="Специальное предложение" />
<div class="advblock adv_button_slider">Реклама
<div class="adv_content">ООО "ЛК Эволюция"</div>
<div class="adv_content">ИНН 9724016636</div>
<div id="main_slider_erid" class="adv_content"></div>
</div>
</section>