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.
 
 
 
 
cosmopet-architecture/wp-content/themes/cosmopet/templates/modal/basket.twig

47 lines
1.7 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>
{% if not fn('WC').cart.is_empty %}
<div class="modal__footer" id="modal-basket-footer">
<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', 'woocommerce') }}
</a>
</div>
</div>
</div>
{% else %}
<div class="modal__footer" id="modal-basket-footer">
<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>
</div>
{% endif %}
</div>