templates/base.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="x-ua-compatible" content="ie=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.         {% block meta %}{% endblock %}
  8.         <title>
  9.             {% block title %}HerbaDoctor CRM{% endblock %}
  10.         </title>
  11.         {% block stylesheets %}
  12.             {{ encore_entry_link_tags('app') }}
  13.         {% endblock %}
  14.     </head>
  15.     <body>
  16.         <div id="app">
  17.             {% block body %}{% endblock %}
  18.         </div>
  19.         {% block javascripts %}
  20.             {{ encore_entry_script_tags('app') }}
  21.         {% endblock %}
  22.     </body>
  23. </html>