templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title>{% block title %}Intranet Avalco{% endblock %}</title>
            <link rel="icon" href="{{ asset('build/images/favicon.jpg') }}">
            <link rel="stylesheet" href="{{ asset('build/app.css') }}">
            {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
            {% block stylesheets %}
                {{ encore_entry_link_tags('app') }}
            {% endblock %}
    
            {% block javascripts %}
                {{ encore_entry_script_tags('app') }}
            {% endblock %}
        </head>
        <body>
    
            {% block body %}{% endblock %}
            <script src="{{ asset('build/runtime.js') }}"></script>
            <script src="{{ asset('build/app.js') }}"></script>
            {{ encore_entry_script_tags('app') }}
        </body>
    </html>
    <!-- templates/base.html.twig or your template file -->