templates/themes/ismart/post/page/detail.html.twig line 1

Open in your IDE?
  1. {% extends 'themes/ismart/base.html.twig' %}
  2. {% block body %}
  3.     <main class="{{ page.css }}">
  4.         {% set blocks = post.block %}
  5.         {% for block in blocks %}
  6.             {% if block.location == '' %}
  7.                 {{ render( controller( 'App\\Frontend\\Controller\\BlockController::run',{id: block.id, request:app.request} )) }}
  8.             {% endif %}
  9.         {% endfor %}
  10.     </main>
  11. {% endblock %}