templates/frontend/elements/_page_title.html.twig line 1

Open in your IDE?
  1. <section class="page-title page-title__inner">
  2. <div class="container container-fluid ">
  3. <div class="row">
  4. {% set col = "col-md-12" %}
  5. {% if referer is defined and referer is not null %}
  6. <div >
  7. <a class="bounce back" href="{{referer}}" type="submit" value="Retour à la liste">
  8. <i class="icon icon-left-chevron"></i>
  9. {% if retour_text is defined and retour_text is not null %}
  10. <span>{{retour_text}}</span>
  11. {% else %}
  12. <span>Retour</span>
  13. {% endif %}
  14. </a>
  15. </div>
  16. {% set col = "col-md-9" %}
  17. {% endif %}
  18. <div >
  19. {% if pageTitle is defined and pageTitle is not null %}
  20. <h1> {{ pageTitle }}
  21. </h1>
  22. {% else %}
  23. <h1>
  24. Espace Parents
  25. </h1>
  26. {% endif %}
  27. </div>
  28. </div>
  29. </div>
  30. </section>