src/NCBS/WebsiteBundle/Resources/views/Bible/chapter/prev-next-explanation.html.twig line 1

Open in your IDE?
  1. {% set sLinkTarget = "" %}
  2. {% if bInFrame %}    
  3.     {% set sLinkTarget = " target=_top " %}    
  4. {% endif %}
  5. {# Previous chapter link #}
  6. {% if prev_chapter_explanation is defined and prev_chapter_explanation is not empty %}
  7.     {% set sPrevTitle = prev_chapter_explanation.title %}      
  8.     {% set href = path('exposition_translation', {'translationUrl': prev_chapter_explanation.url}) %}    
  9.   <a class="nav_link" href="{{ href }}" {{ sLinkTarget }} alt="&larr; {{ sPrevTitle }}" title= "&larr; {{ sPrevTitle }}"><i class="fa-duotone fa-circle-arrow-left" style="--fa-secondary-opacity: 0.3;"></i></a>&nbsp;&nbsp;&nbsp;
  10.  {% endif %}
  11.  
  12. {# Next chapter link #}
  13. {% if next_chapter_explanation is defined and next_chapter_explanation is not empty %}
  14.     {% set sNextTitle = next_chapter_explanation.title %}          
  15.     {% set href = path('exposition_translation', {'translationUrl': next_chapter_explanation.url}) %}     
  16.   <a class="nav_link" style="padding-left:5px;" href="{{ href }}" {{ sLinkTarget }} alt="{{ sNextTitle }} &rarr;" title="{{ sNextTitle }} &rarr;"><i class="fa-duotone fa-circle-arrow-right" style="--fa-secondary-opacity: 0.3;"></i></a>  
  17. {% endif %}