templates/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 %}Biblia kursy{% endblock %}</title>
  6.         <link rel="icon" href="/favicon.ico">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8. {#        {% block stylesheets %}#}
  9. {#            {{ encore_entry_link_tags('app') }}#}
  10. {#        {% endblock %}#}
  11. {#        {% block javascripts %}#}
  12. {#            {{ encore_entry_script_tags('app') }}#}
  13. {#        {% endblock %}#}
  14.     </head>
  15.     <body style="background: #34495E; color: white;">
  16.         {% block body %}{% endblock %}
  17.     </body>
  18. </html>