templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}{% endblock %} | Rap Battle Online</title>
  6.         <link rel="icon" href="{{ asset('build/images/favicons/favicon-32x32.png') }}" sizes="32x32">
  7.         <link rel="icon" href="{{ asset('build/images/favicons/favicon.ico') }}" type="image/svg+xml">
  8.         <link rel="apple-touch-icon" href="{{ asset('build/images/favicons/android-chrome-192x192.png') }}"><!-- 180×180 -->
  9.         <link rel="manifest" href="{{ asset('build/images/favicons/site.webmanifest') }}">
  10.         {% block stylesheets %}
  11.             {{ encore_entry_link_tags('app') }}
  12.         {% endblock %}
  13.         {% block javascripts %}
  14.             {{ encore_entry_script_tags('app') }}
  15.         {% endblock %}
  16.     </head>
  17.     <body class="{% block bodyClass %}{% endblock %}">
  18.         {% include "components/navigation/navigation.html.twig" %}
  19.         {% block body %}{% endblock %}
  20.         {% include "components/footer/footer.html.twig" %}
  21.         <audio id="audioModule" src=""></audio>
  22.     </body>
  23. </html>