Blame view

local/templates/main/components/bitrix/menu/bottom/template.php 509 Bytes
80576aee7   Дмитрий Типикин   Интеграция верстк...
1
2
  <? if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die(); ?>
  <? if (!empty($arResult)): ?>
9df36c320   Дмитрий Типикин   1. Дебаг проблем ...
3
  	<ul class="footer-menu__list">
80576aee7   Дмитрий Типикин   Интеграция верстк...
4
5
6
7
8
9
10
11
12
13
14
15
  	<?
  	foreach ($arResult as $arItem):
  		if ($arParams["MAX_LEVEL"] == 1 && $arItem["DEPTH_LEVEL"] > 1)
  			continue;
  		?>
  		<li class="footer-menu__item">
  			<a class="text-s footer-menu__link link-hover<? if ($arItem["SELECTED"]): ?> active<? endif; ?>"
  			   href="<?= $arItem["LINK"] ?>" title=""><?= $arItem["TEXT"] ?></a>
  		</li>
  	<? endforeach ?>
  	</ul>
  <? endif ?>