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 %}
  10.         <link rel="shortcut icon" href="{{ asset('images/favicon.png', 'core') }}"/>
  11.     {% endblock %}
  12.     {% block stylesheets %}
  13.         {{ encore_entry_link_tags('styles', 'core', 'core') }}
  14.     {% endblock %}
  15.     {% block javascripts %}
  16.         {{ encore_entry_script_tags('scripts', 'core', 'core') }}
  17.     {% endblock %}
  18. </head>
  19. <body class="{% block body_classes %}{% endblock %}">
  20. {{ update_last_connected(app.user) }}
  21. {% block header %}
  22.     {% include '@NellappSDK/Partials/component/header/header.html.twig' %}
  23. {% endblock %}
  24. {% block body %}
  25. {% endblock %}
  26. {% block footer %}{% endblock %}
  27. {% block end_body_scripts %}{% endblock %}
  28. </body>
  29. </html>