You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.8 KiB
44 lines
1.8 KiB
<div id="modal-basket" class="modal__item modal__basket">
|
|
<button class="modal__close">
|
|
<img src="{{ theme.link }}/static/img/svg/main/black-x.svg" alt="{{ __('Close cart', 'your-theme') }}">
|
|
</button>
|
|
|
|
<div class="modal-basket__loading">
|
|
<div class="modal-basket__loader"></div>
|
|
</div>
|
|
|
|
<div class="modal__header">
|
|
<p class="modal__title">{{ __('Cart', 'woocommerce') }}</p>
|
|
|
|
<div class="modal__content" id="modal-basket-content">
|
|
{% include 'shop/cart-contents.twig' %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal__footer" id="modal-basket-footer">
|
|
{% if not fn('WC').cart.is_empty and fn('WC').cart.get_total('raw') > 0 %}
|
|
<div class="modal__block-price">
|
|
<p class="modal-block-price__title">{{ __('Total', 'woocommerce') }}</p>
|
|
<p class="modal-block-price__price">
|
|
{{ fn('wc_cart_totals_order_total_html') }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal__block-button">
|
|
<div class="modal__button">
|
|
<a href="{{ fn('wc_get_checkout_url') }}" class="button button--gradient button--high button--100-perc proceed-to-checkout">
|
|
{{ __('Proceed to checkout', 'woocommerce') }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
<div class="modal__block-button">
|
|
<a href="/shop/" class="modal__button">
|
|
<button class="to-know button--100-perc to-know--background-none continue-shopping">
|
|
<p>{{ __('Continue shopping', 'woocommerce') }}</p>
|
|
</button>
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div> |