templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <title>{% block title %}Feedbak Lamigraf{% endblock %}</title>
  7.         <link rel="icon" type="image/png" href="{{ asset('images/favicon.png') }}">
  8.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  9.         {% block stylesheets %}
  10.             {{ encore_entry_link_tags('global_styles') }}
  11.             {% if app.user %}
  12.                 {{ encore_entry_link_tags('app') }}
  13.             {% endif %}
  14.             <script src="https://kit.fontawesome.com/7331265614.js" crossorigin="anonymous"></script>
  15.         {% endblock %}
  16.         {% block javascripts %}
  17.             {{ encore_entry_script_tags('app') }}
  18.         {% endblock %}
  19.     </head>
  20.     <body>
  21.         {% if app.user %}
  22.             {% include '_navbar.html.twig' %}
  23.             {% include '_navbar-footer.html.twig' %}
  24.         {% endif %}
  25.         {% block body %}{% endblock %}
  26.     </body>
  27. </html>