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">
  2.     {% include('@WebProfiler/Profiler/toolbar.html.twig') with {
  3.         templates: {
  4.             'request': '@WebProfiler/Profiler/cancel.html.twig'
  5.         },
  6.         profile: null,
  7.         profiler_url: url('_profiler', {token: token}),
  8.         profiler_markup_version: 2,
  9.     } %}
  10. </div>
  11. {{ include('@WebProfiler/Profiler/base_js.html.twig') }}
  12. <style{% if csp_style_nonce %} nonce="{{ csp_style_nonce }}"{% endif %}>
  13.     {{ include('@WebProfiler/Profiler/toolbar.css.twig') }}
  14. </style>
  15. <script{% if csp_script_nonce %} nonce="{{ csp_script_nonce }}"{% endif %}>/*<![CDATA[*/
  16.     (function () {
  17.         Sfjs.loadToolbar('{{ token }}');
  18.     })();
  19. /*]]>*/</script>