display.path.php
Путь к странице (хлебные крошки)
Вызывается из:
Исходный код
<?php
$separator = $Conf->get('path_separator', '');
$position = 0;
foreach ($Main->openPath() as $id => $title) if (strlen($title)) {
$position ++;
if ($position > 1) print $separator;
if (strlen($id)) print '<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"><a href="' . $Main->href($id) . '" itemprop="item"><span itemprop="name">' . htmlspecialchars($title) . '</span></a><meta itemprop="position" content="' . $position . '"></li>';
else print '<li><span>' . htmlspecialchars($title) . '</span></li>';
}
?>