templates/frontend/frontend.html.twig line 15

Open in your IDE?
  1. {% extends "base_frontend.html.twig" %}
  2. {% block layout_content %}
  3. <div class="overlay04 none m-hide"></div>
  4.     <!-- Header -->
  5.     {% if (app.user is not null and app.user is pro) or 'pro' == app.session.get('dimension') %}
  6.         {% include 'frontend/header_pro.html.twig' %}
  7.     {% else %}
  8.         {% include 'frontend/header.html.twig' %}
  9.     {% endif %}
  10.     <!-- END Header -->
  11. <!--MIDDLE CONTENT SECTION STARTS HERE-->
  12. <div class="main-content clearfix {% block additional_classes '' %}">
  13.     {% block body_content %}{% endblock body_content %}
  14. </div>
  15. <!--MIDDLE CONTENT SECTION ENDS HERE-->
  16. {% endblock layout_content %}