templates/user/base-user.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8"/>
            <meta name="description" content="Multiwin"/>
            <meta name="format-detection" content="telephone=no"/>
            <meta name="msapplication-tap-highlight" content="no"/>
            <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"/>
    
            <title>
                {% block title %}Area privata
                {% endblock %}
            </title>
            <link rel="icon" href="{{ absolute_url(asset('build-pub/images/favico.ico', 'pub')) }}">
            {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
            {% block stylesheets %}{% endblock %}
    
            {% block javascripts %}{% endblock %}
        </head>
        <body>
            {% block body %}{% endblock %}
        </body>
    </html>