You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
1.1 KiB

<?if(!defined("B_PROLOG_INCLUDED")||B_PROLOG_INCLUDED!==true)die(); ?>
<div class="html-map">
<h1>HTML-карта сайта</h1>
<?php if (!empty($arResult['TREE'])): ?>
<ul class="html-map__list">
<?php foreach ($arResult['TREE'] as $item): ?>
<li>
<a href="<?=$item['URL']?>"><?=$item['TITLE']?></a>
<?php if (!empty($item['CHILDREN'])): ?>
<ul>
<?php foreach ($item['CHILDREN'] as $child): ?>
<li>
<a href="<?=$child['URL']?>"><?=$child['TITLE']?></a>
<!-- и так далее, до 4 уровня -->
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<?php else: ?>
<p>Карта сайта пуста.</p>
<?php endif; ?>
</div>