34 lines
770 B
Twig
Executable file
34 lines
770 B
Twig
Executable file
{% extends 'base.twig' %}
|
|
|
|
{% block head %}
|
|
<script id="injection">
|
|
// Injection d'états pour les Scripts de la page.
|
|
|
|
const _etats = {
|
|
nonce: "{{ nonce_wc }}",
|
|
authString: "{{ auth_string }}",
|
|
};
|
|
</script>
|
|
{% endblock head %}
|
|
|
|
{% block contenu %}
|
|
<main
|
|
id="page-panier"
|
|
data-contient-articles="{{ articles_presents }}"
|
|
>
|
|
{# « Your Cart » #}
|
|
{{ include('parts/pages/panier/panneau-panier.twig') }}
|
|
{# Your Info #}
|
|
{{ include('parts/pages/panier/panneau-informations-client.twig') }}
|
|
|
|
<div class="panier-vide">
|
|
<p>Sorry! Your cart is empty.</p>
|
|
<a
|
|
class="lien-bouton"
|
|
href="{{ pages.shop.lien }}"
|
|
>
|
|
Go back to the Shop
|
|
</a>
|
|
</div>
|
|
</main>
|
|
{% endblock contenu %}
|