Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created November 5, 2015 19:28
Show Gist options
  • Save d1i1m1o1n/6b79528126b4fbb403c5 to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/6b79528126b4fbb403c5 to your computer and use it in GitHub Desktop.
Шаблон навигационной цепочки (хлебные крошки). /bitrix/templates/ID текущего шаблона сайта/chain_template.php
<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?>
<?
$sChainProlog = "<nav class='breadcrumbs'><ul><li><a href='/'>Главная</a> /</li>";
if( strlen($LINK) > 0 && $arChain[count($arCHAIN)-1]['LINK'] != $LINK ) {
$sChainBody .= "<li><a href=\"".$LINK."\" class=\"chain\">".htmlspecialchars($TITLE)."</a> /</li>"; // если указана ссылка то выводим ссылку
} else {
$sChainBody .= "<li>".htmlspecialchars($TITLE)."</li>"; // иначе текст, или последний пункт
}
$sChainEpilog = "</ul></nav>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment