templates/html/base.html.twig line 8

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{document.getProperty('language')}}" class="{% if editmode %}editmode{% else %}frontend{% endif %}">
  3.   {% apply spaceless %}
  4.     {% block head %}
  5.       {% include 'html/01_head/head.html.twig' %}
  6.     {% endblock %}
  7.     {% block body %}
  8.     {% endblock %}
  9.   {% endapply %}
  10. </html>