src/NCBS/WebsiteBundle/Resources/views/Exposition/concept_prev_next.html.twig line 1

Open in your IDE?
  1. {% if prev_next is not defined or prev_next is empty %} 
  2.     {% if (concept_prev_next is defined and concept_prev_next is not null) %}
  3.       {% set sPrevConceptUrl = concept_prev_next['prev'] %}
  4.       {% if sPrevConceptUrl != '' %}
  5.         {% set sPrevConceptLink = '<a class="nav_link" href="' ~ path('exposition_translation', {'translationUrl': sPrevConceptUrl}) ~ '" title="&larr; ' ~  app.session.get('ui_str')["exposition.passage.prev"] ~ '"><i class="fa-duotone fa-circle-arrow-left" style="--fa-secondary-opacity: 0.3;"></i></a>&nbsp;&nbsp;&nbsp;' %}
  6.         {{ sPrevConceptLink|raw }}
  7.       {% endif %}
  8.       
  9.       {% set sNextConceptUrl = concept_prev_next['next'] %}
  10.       {% if sNextConceptUrl != '' %}
  11.         {% set sNextConceptLink = '<a class="nav_link" href="' ~ path('exposition_translation', {'translationUrl': sNextConceptUrl}) ~ '" title="' ~  app.session.get('ui_str')["exposition.passage.next"] ~ ' &rarr;"><i class="fa-duotone fa-circle-arrow-right" style="--fa-secondary-opacity: 0.3;"></i></a>&nbsp;&nbsp;' %}
  12.         {{ sNextConceptLink|raw }}
  13.       {% endif %} 
  14.       <p>
  15.     {% endif %}
  16. {% endif %}