templates/digitalwandler/DocumentType/simpleSnippet.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     <!doctype html>
  3.     <html lang="{{ app.request.locale }}">
  4.         <head>
  5.             {% block stylesheets deferred %}
  6.                 {{ encore_entry_link_tags('app') }}
  7.                 {{ pimcore_head_link() }}
  8.             {% endblock %}
  9.             
  10.         </head>
  11.         <body class="bg-black text-white font-sans{% if editmode %} editmode{% endif %}">
  12.             <main role="main">
  13.                 <div class="main-content bg-black text-white">
  14. {% endif %}
  15. {{ pimcore_areablock('default_snippet_template_content', toolbox_areablock_config('default_snippet_template_content')) }}
  16. {% if editmode %}
  17.                 </div>
  18.             </main>
  19.             {# output scripts added before #}
  20.             {% block scripts deferred %}
  21.                 {{ encore_entry_script_tags('app') }}
  22.                 {{ pimcore_head_script() }}
  23.             {% endblock %}
  24.         
  25.         </body>
  26.     </html>
  27. {% endif %}