25 lines
785 B
PHP
25 lines
785 B
PHP
<?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);
|
|
?>
|
|
<section data-page>
|
|
<div class="container">
|
|
<h1 class="section_title"><?= $arResult['NAME']; ?></h1>
|
|
<div class="service_entry">
|
|
<div class="image-full">
|
|
<img src="<?= $arResult['DETAIL_PICTURE']; ?>" alt="<?= $arResult['NAME']; ?>" />
|
|
</div>
|
|
<?= $arResult['DETAIL_TEXT']; ?>
|
|
</div>
|
|
</div>
|
|
</section>
|