templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>        
  4.         {{ include('section/head.html.twig') }}
  5.         {% block stylesheets %}
  6.             {{ include('section/stylesheet.html.twig') }}
  7.         {% endblock %}
  8.         
  9.     </head>
  10.     <body>
  11.         <!-- Header -->
  12.         {{ include('section/header.html.twig') }}
  13.         <!-- Body -->
  14.         <div id="app">
  15.             {% block body %}
  16.             
  17.             {% endblock %}
  18.         </div>
  19.         <!-- Footer -->
  20.         {{ include('section/footer.html.twig') }}
  21.         {% block javascripts %}
  22.             {{ include('section/javascript.html.twig') }}
  23.         {% endblock %}
  24.     </body>
  25. </html>