templates/site/content/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block headerTitle %}<h1>{{ page.title }}</h1>{% endblock %}
  4. {% block headerIntro %}<p class="lead-2 opacity-90 mt-6">{{ page.intro | raw }}</p>{% endblock %}
  5. {% block body %}
  6. {% include 'site/content/blocks/features.html.twig' %}
  7. <section id="section-mission" class="section">
  8.     <div class="container">
  9.         <div class="row gap-y align-items-center text-center">
  10.         <div class="col-md-10 mx-auto">
  11.             
  12.             {% if app.request.locale == 'en' %}
  13.                 {{ page.contentEng | raw }}
  14.             {% else %}
  15.                 {{ page.content | raw }}
  16.             {% endif %}
  17.         </div>
  18.         </div>
  19.     </div>
  20. </section>
  21. {% include 'site/content/blocks/prices.html.twig' %}
  22. {% include 'site/content/blocks/faq.html.twig' %}
  23. {% include 'site/content/blocks/about.html.twig' %}
  24. {# {% include 'site/content/contact.html.twig' %} #}
  25. {{ render(controller('App\\Controller\\Site\\ContactController::contactFormAction')) }}
  26. {% endblock %}