Blame view
local/templates/main/components/bitrix/menu/top/template.php
463 Bytes
80576aee7 Интеграция верстк... |
1 2 3 4 5 6 7 8 9 10 11 |
<? if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die(); ?> <? if (!empty($arResult)): ?> <nav class="header-menu"> <ul class="header-menu__list"> <? foreach ($arResult as $arItem): ?> <li class="header-menu__item"><a class="header-menu__link link-hover<? if($arItem["SELECTED"]): ?> active<? endif; ?>" title="" href="<?= $arItem["LINK"] ?>"><?= $arItem["TEXT"] ?></a></li> <? endforeach ?> </ul> </nav> <? endif ?> |