Skip to content

Instantly share code, notes, and snippets.

@TrywaR
Last active February 21, 2019 16:05
Show Gist options
  • Save TrywaR/51860ed6faae4ecb52a301931e27e91f to your computer and use it in GitHub Desktop.
Save TrywaR/51860ed6faae4ecb52a301931e27e91f to your computer and use it in GitHub Desktop.
[ MODX | BS | Schma ] BreadCrumbs
[[!pdoCrumbs?
&tpl= `@INLINE
<li class="breadcrumb-item" itemscope="" itemprop="itemListElement" itemtype="http://schema.org/ListItem">
<a title="[[+menutitle]]" itemprop="item" href="[[++site_url]][[+uri]]">
<span itemprop="name">[[+menutitle]]</span>
</a>
<meta itemprop="position" content="[[+idx]]">
</li>`
&tplHome=`@INLINE
<li class="breadcrumb-item" itemscope="" itemprop="itemListElement" itemtype="http://schema.org/ListItem">
<a title="[[+menutitle]]" itemprop="item" href="[[++site_url]]">
<span itemprop="name">Главная</span>
</a>
<meta itemprop="position" content="[[+idx]]">
</li>`
&tplCurrent=`@INLINE
<li class="breadcrumb-item active" aria-current="page" itemscope="" itemprop="itemListElement" itemtype="http://schema.org/ListItem">
<a itemprop="item" href="[[++site_url]]"></a>
<span itemprop="name">[[+menutitle]]</span>
<meta itemprop="position" content="[[+idx]]">
</li>`
&tplWrapper=`@INLINE
<nav aria-label="breadcrumb">
<ol class="breadcrumb" itemscope="" itemtype="http://schema.org/BreadcrumbList">
[[+output]]
</ol>
</nav>`
&showHome=`1`
&showAtHome=`0`
]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment