templates/simple_base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     {% include 'common/_head.html.twig' %}
  5.     <title>{% block title '' %}</title>
  6. </head>
  7. {% block body %}
  8.     <body class="gray-bg">
  9.     <div class="wrapper wrapper-content animated fadeInRight">
  10.         {% include 'default/_flash_messages.html.twig' %}
  11.         {% block content '' %}
  12.     </div>
  13.     <div class="footer">
  14.         {% block footer %}
  15.         {% endblock %}
  16.     </div>
  17.     {% block javascripts %}
  18.         {{ encore_entry_script_tags('assets/theme') }}
  19.         {{ encore_entry_script_tags('assets/app') }}
  20.     {% endblock %}
  21. {% endblock %}
  22. </body>
  23. </html>