templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.     <meta
  7.       name="viewport"
  8.       content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
  9.     />
  10.     {% block stylesheets %}
  11.       {{ vite_entry_link_tags('app') }}
  12.     {% endblock %}
  13.     {% block javascripts %}
  14.       {{ vite_entry_script_tags('app') }}
  15.     {% endblock %}
  16.     <title>Project 481</title>
  17.   </head>
  18.   <body>
  19.   {% block body %}
  20.     <div
  21.       id="app" 
  22.       data-token="{{ csrf_token('authenticate') }}"
  23.       {% if app.user %}
  24.         data-user="{{ data_user }}"
  25.       {% endif %}
  26.     ></div>
  27.   {% endblock %}
  28.   </body>
  29. </html>