<?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="index-block block light-blue">
    <div class="index-block__content container-md">
        <div class="index-block__items light-blue">
            <?foreach ($arParams['MENU_NAME'] as $key => $value):?>
            <?if(!$value)continue;?>
            <a class="index-block__item" href="<?=$arParams['MENU_VALUE'][$key];?>"><?=$value;?></a>
            <?endforeach;?>
        </div>
    </div>
</div>