templates/pages/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block meta %}
  3.     <meta name="description" content="{{ 'homepage.meta_description'|trans }}">
  4.     <meta name="keywords" content="{{ 'homepage.meta_keywords'|trans }}">
  5. {% endblock %}
  6. {% block title %}{{ 'homepage.title'|trans }}{% endblock %}
  7. {% block hero %}
  8.     <h1 class="text-center">{{ 'homepage.hero_title'|trans }}</h1>
  9.     <p>{{ 'homepage.hero_subtitle'|trans }}</p>
  10.     <a href="#" class="primary-btn">{{ 'homepage.hero_button'|trans }}</a>
  11. {% endblock %}
  12. {% block body %}
  13.     {# Hero #}
  14.     <div class="mt-1 bg-white p-5 text-center mb-4">
  15.         <h2>{{ 'homepage.welcome_title'|trans }}</h2>
  16.         <br>
  17.         <p class="fs-5">{{ 'homepage.description1'|trans }}</p>
  18.         <p class="fs-5">{{ 'homepage.description2'|trans }}</p>
  19.         <p class="fs-5">{{ 'homepage.description3'|trans }}</p>
  20.         <p class="fs-5">{{ 'homepage.description4'|trans }}</p>
  21.     </div>
  22. {% endblock %}
  23. {# Extras #}
  24. {% block extras %}
  25.     {% include "components/theme/_extras.html.twig" %}
  26. {% endblock %}
  27. {% block javascript %}{% endblock %}