22 lines
785 B
Twig
22 lines
785 B
Twig
|
<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>
|