templates/Front/Scholar/Partial/_scholar_navigation_previous_after.html.twig line 1

Open in your IDE?
  1. <div class="mt-5 mb-3 d-flex flex-column flex-md-row justify-content-between align-items-center previous-next-button-line">
  2.     <div class="previous-btn-width">
  3.         {% if previous_informations is defined and previous_informations is not null %}
  4.             <a href="{{- previous_informations['link'] -}}"
  5.                class="btn-nellapp-v2 btn-nellapp-v2-outline d-flex justify-content-center align-items-center">
  6.                 <img class="mr-2" src="{{- asset('build/common/background-white-left.svg', 'common') -}}"
  7.                      alt="Previous"/>
  8.                 <span>{{- previous_informations['title'] -}}</span>
  9.             </a>
  10.         {% endif %}
  11.     </div>
  12.     <div class="previous-btn-width">
  13.         {% if next_informations is defined and next_informations is not null %}
  14.             {% set path = next_informations['link'] %}
  15.             <a href="{{- path -}}"
  16.                {% if path is null %}disabled{% endif %}
  17.                class="{% if path is null %}disabled {% endif %}btn-nellapp-v2 d-flex justify-content-center align-items-center">
  18.                 <span>{{- next_informations['title'] -}}</span>
  19.                 <img class="ml-2" src="{{- asset('build/common/background-white-right.svg', 'common') -}}" alt="Next"/>
  20.             </a>
  21.         {% endif %}
  22.     </div>
  23. </div>