templates/business/product/single-dynamic.html.twig line 1

  1. {% extends 'core/front/front.layout.html.twig' %}
    {% block title %}{% if item is not null %}{{ item.i18n(locale).name }}{% endif %}{% endblock %}
    {% block front %}
        {% if item is not null %}
            {{ breadcrumb(
                item.showTitle ? item.i18n(locale).name : '',
                item.showTitle ? item.i18n(locale).subTitle: '',
                [{link: null, name: item.i18n(locale).name}],
                item.thumbnail
            ) }}
        {% endif %}
        {{ render(controller("App\\Blog\\Controller\\Public\\EmbedController::sections", {item: item})) }}
    {% endblock %}