{% extends "Default/layout.html.twig" %}
{% set page_title = block.meta.title %}
{% set page_meta_description = block.meta.description %}
{% set page_meta_keywords = block.meta.keywords | default() %}
{% block page_content %}
{% include 'Default/_engine_form.html.twig'
with {
'h1' : block.meta.h1 | default(''),
'h2' : block.meta.h2 | default('')
} %}
{% if breadcrumbLinks is defined and breadcrumbLinks|length >= 2 %}
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
{% for link in breadcrumbLinks %}
{% if not loop.last %}
<li class="breadcrumb-item"><a href="{{ link.url }}">{{ link.label }}</a></li>
{% else %}
<li class="breadcrumb-item active" aria-current="page">{{ link.label }}</li>
{% endif %}
{% endfor %}
</ol>
</nav>
{% endif %}
{{ block | cb_blockdisplay }}
{% if prices is defined and prices|length >= 1 %}
<section class="panel" id="last-prices">
<h2 class="panel-heading">{{'fromatobcountrypage.lastprice.h1'|trans}} {{ 'country.FR'|trans ~ ' ➜ ' ~ 'country.MA'|trans}}</h2>
{% include "Default/_prices.html.twig" with {'prices':prices} %}
</section>
{% endif %}
{% endblock %}