templates/shop/producer/detail.html.twig line 1

  1. {% extends '/web/base.html.twig' %}
    
    {% block title %}{{ title }}{% endblock %}
    
    {% block javascripts %}
        {{ parent() }}
    {% endblock %}
    
    {% block body %}
        <div class="container">
            <section>
                <h1>{{ producer.name }}</h1>
                <p class="section-perex">{{ producer.description|raw }}</p>
            </section>
            <section>
                <div id="category-tiles-producer-vue" producer-name="{{ producer.name }}" producer-slug="{{ producer.slug }}"></div>
            </section>
        </div>
    {% endblock %}