{% extends 'themes/ismart/base.html.twig' %}{% block customStyle %} <style> {{ page.customCss | raw }} </style>{% endblock %}{% block body %} <main class="{{ page.css }}"> {% set blocks = post.block %} {% for block in blocks %} {% if block.location == ''%} {% if block.active is empty or block.active == 'active' %} {{ render( controller( 'App\\Frontend\\Controller\\BlockController::run',{id: block.id, request:app.request} )) }} {% endif %} {% endif %} {% endfor %} </main>{% endblock %}