You've already forked wc-bootstrap
24 lines
651 B
Twig
24 lines
651 B
Twig
|
|
{#
|
||
|
|
# Empty Cart (Bootstrap 5 Override)
|
||
|
|
#
|
||
|
|
# Displayed when the cart has no items.
|
||
|
|
#
|
||
|
|
# WooCommerce PHP equivalent: cart/cart-empty.php
|
||
|
|
#
|
||
|
|
# @package WcBootstrap
|
||
|
|
# @since 0.1.0
|
||
|
|
#}
|
||
|
|
|
||
|
|
{{ do_action('woocommerce_cart_is_empty') }}
|
||
|
|
|
||
|
|
<div class="text-center py-5">
|
||
|
|
<i class="bi bi-cart-x display-1 text-body-secondary mb-4" aria-hidden="true"></i>
|
||
|
|
<p class="lead text-body-secondary mb-4">{{ __('Your cart is currently empty.') }}</p>
|
||
|
|
|
||
|
|
{% if wc_get_page_id('shop') > 0 %}
|
||
|
|
<a class="btn btn-primary btn-lg" href="{{ wc_get_page_permalink('shop')|esc_url }}">
|
||
|
|
{{ __('Return to shop') }}
|
||
|
|
</a>
|
||
|
|
{% endif %}
|
||
|
|
</div>
|