32 lines
748 B
Twig
Executable file
32 lines
748 B
Twig
Executable file
{% extends 'base.twig' %}
|
|
|
|
{% block head %}
|
|
{{ include('parts/en-tetes-backend.twig') }}
|
|
|
|
<!-- markup-fmt-ignore -->
|
|
<script
|
|
id="page-states"
|
|
type="application/json"
|
|
>
|
|
{{ page_states }}
|
|
</script>
|
|
{% endblock head %}
|
|
|
|
{% block contenu %}
|
|
{# Menu avec les catégories de produits #}
|
|
{{ include('parts/menu-categories-produits.twig') }}
|
|
{# {% include "parts/bandeau.twig" %} #}
|
|
|
|
<main id="page-boutique">
|
|
{{ include('parts/pages/shop/grille-produits.twig') }}
|
|
|
|
<div class="actions">
|
|
<button
|
|
{{ products|length == 12 ? '' : 'hidden' }} class="bouton-case-pleine"
|
|
id="bouton-plus-de-produits" type="button"
|
|
>
|
|
Show more
|
|
</button>
|
|
</div>
|
|
</main>
|
|
{% endblock contenu %}
|