templates/app/Section/templates/history.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block page_container %}
  3.     <section class="bg-title-grey">
  4.         <div class="page-wrapper section-content">
  5.             <h1 class="ct-blue ff-os-bold m-0 text-uppercase">{{ "section.templates.our_company.history.title"|trans|upper }}</h1>
  6.         </div>
  7.     </section>
  8.     <div class="page-wrapper {% if not is_mobile() %}mt-1r{% endif %}">
  9.     {% if  is_mobile() %}
  10.         {% include 'app/Section/templates/History/Mobile/_timeline.html.twig' %}
  11.     {% else %}
  12.         {% include 'app/Section/templates/History/Desktop/_timeline.html.twig' %}
  13.     {% endif %}
  14.     </div>
  15. {% endblock %}