Blame view

local/templates/main/components/bitrix/menu/favorite/template.php 491 Bytes
80576aee7   Дмитрий Типикин   Интеграция верстк...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?>
  
  <?if (!empty($arResult)):?>
  
  <nav class="header__nav">
      <ul class="header__nav-list">
      <?
      foreach($arResult as $arItem):
          if($arParams["MAX_LEVEL"] == 1 && $arItem["DEPTH_LEVEL"] > 1)
              continue;
          ?>
          <li><a class="btn" style="background: <?=$arItem["PARAMS"]["COLOR"]?>;" href="<?=$arItem["LINK"]?>"><?=$arItem["TEXT"]?></a></li>
      <?endforeach?>
      </ul>
  </nav>
  <?endif?>