Я пытаюсь переопределить шаблон домашней страницы магазина Sylius (внешний интерфейс).Я поместил шаблон ( index.html.twig ) в app / Resources / templates / bundles / SyliusShopBundle .Мой шаблон выглядит так:
{% extends '@SyliusShop/layout.html.twig' %}
{% block content %}
<p>this is a test</p>
<h2 class="ui horizontal section divider header">
{{ 'sylius.ui.latest_products'|trans }}
</h2>
{{ render(url('sylius_shop_partial_product_index_latest', {'count': 4, 'template': '@SyliusShop/Product/_horizontalList.html.twig'})) }}
{% endblock %}
Я очистил кеш, но не вижу никаких изменений.Чего мне не хватает?