templates/bundles/SyliusShopBundle/Account/layout.html.twig line 1

Open in your IDE?
  1. {% extends '@SyliusShop/layout.html.twig' %}
  2. {% block content %}
  3.     {% block breadcrumb %}
  4.     {% endblock %}
  5.     <div class="ui stackable grid">
  6.         <div class="four wide column account-menu">
  7.             {{ sylius_template_event('sylius.shop.account.layout.menu') }}
  8.         </div>
  9.         <div class="twelve wide column">
  10.             {{ sylius_template_event('sylius.shop.account.layout.before_subcontent') }}
  11.             {% block subcontent %}
  12.             {% endblock %}
  13.             {{ sylius_template_event('sylius.shop.account.layout.after_subcontent') }}
  14.         </div>
  15.     </div>
  16. {% endblock %}