{% if prev_next is not defined or prev_next is empty %}
{% if (concept_prev_next is defined and concept_prev_next is not null) %}
{% set sPrevConceptUrl = concept_prev_next['prev'] %}
{% if sPrevConceptUrl != '' %}
{% set sPrevConceptLink = '<a class="nav_link" href="' ~ path('exposition_translation', {'translationUrl': sPrevConceptUrl}) ~ '" title="← ' ~ app.session.get('ui_str')["exposition.passage.prev"] ~ '"><i class="fa-duotone fa-circle-arrow-left" style="--fa-secondary-opacity: 0.3;"></i></a> ' %}
{{ sPrevConceptLink|raw }}
{% endif %}
{% set sNextConceptUrl = concept_prev_next['next'] %}
{% if sNextConceptUrl != '' %}
{% set sNextConceptLink = '<a class="nav_link" href="' ~ path('exposition_translation', {'translationUrl': sNextConceptUrl}) ~ '" title="' ~ app.session.get('ui_str')["exposition.passage.next"] ~ ' →"><i class="fa-duotone fa-circle-arrow-right" style="--fa-secondary-opacity: 0.3;"></i></a> ' %}
{{ sNextConceptLink|raw }}
{% endif %}
<p>
{% endif %}
{% endif %}