templates/product/overview/category.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
    
    {% block title %}{{category.name}} | Départment {{ parent() }}{% endblock %}
    
    {% block body %}
        <div class="container mt-4">
            <nav aria-label="breadcrumb">
                <ol class="breadcrumb">
                    <li class="breadcrumb-item">
                        <a href="{{path('product.overview')}}"><i class="fas fa-undo-alt"></i>Nos départments</a>
                    </li>
                    <li class="breadcrumb-item" aria-current="page">{{category.name}}</li>
                </ol>
            </nav>
            
            <div class="agromwinda-contractor">
                <div class="agromwinda-contractor-a">
                    
                        {% for product in category.products %}
                            {% include "home/_product.html.twig" %}
                        {% else %}
                            <div class="" style="margin-bottom: 200px; margin-top: 70px;"></div>
                            <div class="alert alert-success text-center" role="alert">
                                <h6 class="alert-heading"><i class="far fa-smile-beam fa-2x"></i>Nous ajoutons les produits en rapport avec la catégorie 
                                    <span class="lead font-weight-bold">{{category.name}} </span>
                                !</h6>
                                <p class="mb-0">Equipe Marketing, &copy; Baadhi.</p>
                            </div>
                        {% endfor %}
                    
                </div>
            </div>
        </div>
    {% endblock %}