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 d-flex justify-content-center align-items-center"
  6.                style="background-color: unset;color: #3f51b5;text-decoration: none;border: 2px solid #3f51b5;">
  7.                 <img class="mr-2" src="{{- asset('build/common/background-white-left.svg', 'common') -}}"
  8.                      alt="Previous"/>
  9.                 <span>{{- previous_informations['title'] -}}</span>
  10.             </a>
  11.         {% endif %}
  12.     </div>
  13.     <div class="previous-btn-width">
  14.         {% if next_informations is defined and next_informations is not null %}
  15.             {% set path = next_informations['link'] %}
  16.             <a href="{{- path -}}"
  17.                {% if path is null %}disabled{% endif %}
  18.                class="{% if path is null %}disabled {% endif %}btn-nellapp-v2 d-flex justify-content-center align-items-center">
  19.                 <span>{{- next_informations['title'] -}}</span>
  20.                 <img class="ml-2" src="{{- asset('build/common/background-white-right.svg', 'common') -}}" alt="Next"/>
  21.             </a>
  22.         {% endif %}
  23.     </div>
  24. </div>