{% set search_location = search_location ?: false %}
{% set title = title ?: false %}
{% set all_city = all_citt ?: false %}
{% set result = result ?: false %}
{% set link_text = link_text ?: false %}
{% set link = link ?: false %}
<header class="headerTitleAndLink">
<div class="headerTitleAndLink-group grid-x align-middle">
<h2 class="headerTitleAndLink-group-title">
{% if search_location %}
{% if city %}
Tous les {{title}} à proximité {{search_location}}
{% else %}
Tous les {{title|raw}}
{% endif %}
{% elseif all_city %}
{{title}} par ville
{% else %}
{{title|raw}}
{% endif %}
</h2>
{% if result %}
<p class="headerTitleAndLink-group-result"> {{ result }} résultats</p>
{% endif %}
</div>
{% if link_text %}
<a href="{{link}}" class="headerTitleAndLink-link">
<span class="headerTitleAndLink-link-text">{{link_text}}</span>
<img class="headerTitleAndLink-link-image" src="{{ asset('images/svg/arrowIcon_smallblue.svg') }}" />
</a>
{% endif %}
</header>