templates/default/homepage.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body_id 'homepage' %}
  3. {#
  4.     the homepage is a special page which displays neither a header nor a footer.
  5.     this is done with the 'trick' of defining empty Twig blocks without any content
  6. #}
  7. {% block header %}{% endblock %}
  8. {% block footer %}{% endblock %}
  9. {% block body %}
  10.     <div class="page-header">
  11.         <h1>Добро пожаловать в приложение генерации QR-кодов для МойСклад</h1>
  12.     </div>
  13. {% endblock %}