vendor/nellapp/sdk-bundle/src/Resources/views/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="{% block html_classes %}{% endblock %}">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %}Welcome!{% endblock %}</title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.     {# Run `composer require symfony/webpack-encore-bundle`
  8.            and uncomment the following Encore helpers to start using Symfony UX #}
  9.     {% block favicon %}{% endblock %}
  10.     {% block stylesheets %}
  11.         {{ encore_entry_link_tags('styles', 'core', 'core') }}
  12.     {% endblock %}
  13.     {% block javascripts %}
  14.         {{ encore_entry_script_tags('scripts', 'core', 'core') }}
  15.     {% endblock %}
  16. </head>
  17. <body class="{% block body_classes %}{% endblock %}">
  18. {{ update_last_connected(app.user) }}
  19. {% block header %}
  20.     {% include '@NellappSDK/Partials/component/header/header.html.twig' %}
  21. {% endblock %}
  22. {% block body %}
  23. {% endblock %}
  24. {% block footer %}{% endblock %}
  25. {% block end_body_scripts %}{% endblock %}
  26. </body>
  27. </html>