{% set position = 1 %}
<ul class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList">
{# ----- Rubrique ------------------------------------------------------- #}
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a href="{{path('home_page')}}" itemscope itemtype="https://schema.org/Thing" itemprop="item" itemid=""><span itemprop="name">Accueil</span></a>
<meta itemprop="position" content="{{ position }}">
{% set position = position + 1 %}
</li>
<li class="separator"></li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a href="{{path('offre-emploi-root')}}" itemscope itemtype="https://schema.org/Thing" itemprop="item" itemid=""><span itemprop="name">Offres d'emploi</span></a>
<meta itemprop="position" content="{{ position }}">
{% set position = position + 1 %}
</li>
<li class="separator"></li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
{% if offre is defined %}
<span itemprop="name">{{ offre.profil }}</span>
{% else %}
<span itemprop="name">Liste des offres d'emploi</span>
{% endif %}
<meta itemprop="position" content="{{ position }}">
{% set position = position + 1 %}
</li>
</ul>