templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
    <html lang="{{ app.request.locale }}">
        <head>
            <meta charset="UTF-8" />
            <meta name="viewport" content="width=device-width, initial-scale=1" />
            <meta content="" name="{% block keywords %}{% endblock %}">
            <meta content="" name="{% block description %}{% endblock %}">
    
            <title>{{ app_name }} - {% block title %}{% endblock %}</title>
    
            {% block stylesheets %}
                <link rel="stylesheet" href="{{ preload(asset('assets/app.css'), { as: 'style' }) }}">
            {% endblock %}
            <script src="{{ asset('assets/runtime.js') }}"></script>
    
            <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
        </head>
        <body class="{% block bodyClass %}{% endblock %}">
        {% if app.request.hasPreviousSession %}
            {% for type, messages in app.session.flashbag.all() %}
                {% for message in messages %}
                    <div class="flash-{{ type }}">
                        {{ message }}
                    </div>
                {% endfor %}
            {% endfor %}
        {% endif %}
    
        {% block body %}{% endblock %}
        {% block javascripts %}{% endblock %}
        </body>
    </html>