templates/blank.html.twig line 1

Open in your IDE?
  1. {% if block('javascripts_top') is not defined %}{% block javascripts_top %}{% endblock %}{% endif %}
  2. {% if block('stylesheets') is not defined %}{% block stylesheets %}{% endblock %}{% endif %}
  3. {% if block('javascripts_bottom') is not defined %}{% block javascripts_bottom %}{% endblock %}{% endif %}
  4. {% if block('after_body') is not defined %}{% block after_body %}{% endblock %}{% endif %}
  5. {% if block('before_body') is not defined %}{% block before_body %}{% endblock %}{% endif %}
  6. {% include '_page/_core/_header.html.twig' with {
  7.     javascripts_top: block('javascripts_top'),
  8.     stylesheets: block('stylesheets'),
  9.     stylesheetsUrl: '_page/_guest/_styles.html.twig',
  10.     after_body: block('after_body'),
  11.     before_body: block('before_body'),
  12. } %}
  13. <main  class="container-fluid h-100">
  14.     {#{% include "_page/_core/_messages.html.twig" %}#}
  15.     {% block body %}{% endblock %}
  16. </main>
  17. {% include "_page/_content/_logoutModal.html.twig" %}