src/Biceps/DocumentBundle/Resources/views/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5.     <meta charset="UTF-8">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1">
  8.     <title>
  9.         {% if block("title") is defined %}
  10.             {{ block('title') }} -
  11.         {% endif %}
  12.         Document - Biceps
  13.     </title>
  14.     {{ encore_entry_link_tags('gentelella') }}
  15.     {% if block("stylesheets") is defined %}
  16.         {{ block('stylesheets') }}
  17.     {% endif %}
  18.     {{ encore_entry_link_tags('document') }}
  19. </head>
  20. <body class="{{ bodyclass }}">
  21. {{ block('body') }}
  22. {{ encore_entry_script_tags('gentelella') }}
  23. {% if block("javascripts") is defined %}
  24.     {{ block('javascripts') }}
  25. {% endif %}
  26. {{ encore_entry_script_tags('document') }}
  27. </body>
  28. </html>