{% set cmptFil = 1 %}
<nav aria-label="breadcrumb" class="d-flex justify-content-center navFiche" itemscope
itemtype="http://schema.org/BreadcrumbList">
<ol class="breadcrumb blocfichenav m-0">
<li class="breadcrumb-item" itemprop="itemListElement"
itemscope itemtype="http://schema.org/ListItem">
<a href="{{ websiteroot }}"
itemprop="item" class="filAccueil">
</a>
<meta itemprop="position" content="{{ cmptFil }}"/>
{% set cmptFil = cmptFil+1 %}
</li>
{% for fil in fileAriane %}
<li class="breadcrumb-item" itemprop="itemListElement"
itemscope itemtype="http://schema.org/ListItem">
<a href="{{ url('front_page',{'name': fil.permalien}) }}"
itemprop="item">
<span itemprop="name">{{ fil.ptitre }}</span>
</a>
<meta itemprop="position" content="{{ cmptFil }}"/>
{% set cmptFil = cmptFil+1 %}
</li>
{% endfor %}
<li class="breadcrumb-item{% if catEnCours is not defined and actualite is not defined %} active{% endif %}"
{% if catEnCours is not defined and actualite is not defined %}aria-current="page"{% endif %}
itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{{ path('front_news') }}">
<span itemprop="name">{{ page.ptitreonglet|default(page.ptitre) }}</span>
</a>
<meta itemprop="position" content="{{ cmptFil }}"/>
{% set cmptFil = cmptFil+1 %}
</li>
{% if catEnCours is defined %}
{% for cat in categories %}
{% if cat.id == catEnCours %}
<li class="breadcrumb-item {% if catEnCours is not defined and actualite is not defined %} active{% endif %}"
{% if catEnCours is not defined and actualite is not defined %}aria-current="page"{% endif %}
itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{{ path('front_news', {categorie:catEnCours}) }}">
<span itemprop="name">{{ cat.actCatIntitule }}</span>
</a>
<meta itemprop="position" content="{{ cmptFil }}"/>
{% set cmptFil = cmptFil+1 %}
</li>
{% endif %}
{% endfor %}
{% endif %}
{% if actualite is defined %}
<li class="breadcrumb-item" aria-current="page" itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{{ path('front_news_card', {id:actualite.id}) }}"><span
itemprop="name">{{ actualite.actTitre }}</span></a>
<meta itemprop="position" content="{{ cmptFil }}"/>
{% set cmptFil = cmptFil+1 %}
</li>
{% endif %}
</ol>
<img class="noFadeInUp fichenavLogo" id="BigTitlepeint"
src="{{ websiteroot }}{{ asset('/medias_front/common/logo_page.svg') }}"
alt="Logo Thermes de cauterets">
</nav>