vendor/symfony/web-profiler-bundle/Resources/views/Profiler/toolbar_js.html.twig line 1

Open in your IDE?
  1. <div id="sfwdt{{ token }}" class="sf-toolbar sf-display-none" role="region" aria-label="Symfony Web Debug Toolbar">
        {% include('@WebProfiler/Profiler/toolbar.html.twig') with {
            templates: {
                'request': '@WebProfiler/Profiler/cancel.html.twig'
            },
            profile: null,
            profiler_url: url('_profiler', {token: token}),
            profiler_markup_version: 2,
        } %}
    </div>
    
    {{ include('@WebProfiler/Profiler/base_js.html.twig') }}
    
    <style{% if csp_style_nonce %} nonce="{{ csp_style_nonce }}"{% endif %}>
        {{ include('@WebProfiler/Profiler/toolbar.css.twig') }}
    </style>
    <script{% if csp_script_nonce %} nonce="{{ csp_script_nonce }}"{% endif %}>/*<![CDATA[*/
        (function () {
            Sfjs.loadToolbar('{{ token }}');
        })();
    /*]]>*/</script>