{{ SetBreadCrumb(BreadCrumbs)|raw}}
{#
{% if breadCrumb is defined %}
<div id="pankuzu">
<ul itemscope itemtype="http://schema.org/BreadcrumbList" style="margin-bottom: 0px;">
{% for bread in breadCrumb %}
{% set href = '' %}
{% if bread.href is defined %}
{% set href = php_preg_replace('@([^/]+)$@', '$1/', bread.href) %}
{% endif %}
{% if loop.index < (breadCrumb | length) %}
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<meta itemprop="position" content="{{ loop.index }}" />
<a href="{{ href }}" itemprop="item"><span itemprop="name">{{ bread.label }}</span></a> >
</li>
{% else %}
<li>
<strong class="nowpage">{{ bread.label }}</strong>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
#}