templates/czech/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %}Flowy - CZ{% endblock %}</title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7. {#    <meta charset="UTF-8" />#}
  8.     {% block stylesheets %}
  9.         {{ encore_entry_link_tags('czech_css') }}
  10.     {% endblock %}
  11. </head>
  12. <body{% if bodyClass is defined %} class="{{ bodyClass }}"{% endif %}>
  13.     {% block page %}{% endblock %}
  14.     {% block javascripts %}
  15.         {{ encore_entry_script_tags('czech_js') }}
  16.     {% endblock %}
  17. </body>
  18. </html>