{% extends '@SyliusShop/layout.html.twig' %} {% set published = (page.publishAt is not null and page.publishAt|date("Y-m-d H:i:s") < "now"|date("Y-m-d H:i:s") or page.publishAt is null) %} {%- block title -%} {% if page.title is not empty and published == true %} {{ page.title }} {% else %} {{ parent() }} {% endif %} {%- endblock -%} {% block metatags %} {% if published == true %} {% if page.metaKeywords is not empty %} {% endif %} {% if page.metaDescription is not empty %} {% endif %} {% endif %} {% endblock %} {% block content %} {% if published == true %}

{{ page.name }}

{% if page.image %} {% endif %}
{{ bitbag_cms_render_content(page) }}
{% include '@BitBagSyliusCmsPlugin/Shop/Page/Show/_sections.html.twig' %}
{% if page.products|length > 0 %}

{{ 'bitbag_sylius_cms_plugin.ui.page_related_products'|trans }}

{% include '@SyliusShop/Product/_horizontalList.html.twig' with {'products': page.products} %}
{% endif %} {% else %} {% include '@BitBagSyliusCmsPlugin/Shop/Page/Error/_notPublished.html.twig' with {'publishAt': page.publishAt} %} {% endif %} {% endblock %}