{% extends 'partials/base.html.twig' %} {# Commented code for future improvements in modular menu #} {# {% set show_onpage_menu = header.onpage_menu == true or header.onpage_menu is null %} {% macro pageLinkName(text) %} {{ text|lower|replace({' ':'_'}) }} {% endmacro %} #} {% block menu %} {% include 'partials/sidebar_right.html.twig' %} {% endblock %} {% block content %}

{{ title }}

{% if subtitle %}

{{ subtitle }}

{% endif %}
{% if show_image and image %} {{ image.cropZoom(img_width,img_height).loading('lazy').attribute('decoding','async').html(title, title)|raw }} {% endif %} {{ page.content|raw}} {% for module in page.collection() %} {{ module.content|raw }} {% endfor %}
{% endblock %} {% block sidebar %} {% if show_sidebar == true %} {% include 'partials/sidebar_left.html.twig' %} {% endif %} {% endblock %}