templates/Context/Shop/Vendor/index.html.twig line 1

Open in your IDE?
  1. {% extends '@SyliusShop/layout.html.twig' %}
  2. {% block title %}{{ 'app.menu.buyer.purchases'|trans }} | {{ parent() }}{% endblock %}
  3. {% block breadcrumb %}
  4. {% endblock %}
  5. {% block content %}
  6.     <div class="ui breadcrumb">
  7.         <a href="{{ path('sylius_shop_homepage') }}" class="section">{{ 'sylius.ui.home'|trans }}</a>
  8.         <div class="divider"> / </div>
  9.         <div class="active section">{{ 'open_marketplace.ui.vendors'|trans }}</div>
  10.     </div>
  11.     <h1 class="ui monster section dividing header">
  12.         {{ 'open_marketplace.ui.vendors'|trans }}
  13.     </h1>
  14.     {{ sylius_grid_render(resources, 'Context/Shop/Vendor/Grid/vendorBlocks.html.twig') }}
  15. {% endblock %}