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.
 
 
 
 
 
 

29 lines
725 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /** @var $block \Magento\Checkout\Block\Cart */
  7. ?>
  8. <div class="cart-empty">
  9. <?= $block->getChildHtml('checkout_cart_empty_widget') ?>
  10. <p><?= $block->escapeHtml(__('You have no items in your shopping cart.')) ?></p>
  11. <p><?= $block->escapeHtml(
  12. __(
  13. 'Click <a href="%1">here</a> to continue shopping.',
  14. $block->escapeUrl($block->getContinueShoppingUrl())
  15. ),
  16. ['a']
  17. ) ?>
  18. </p>
  19. <?= $block->getChildHtml('shopping.cart.table.after') ?>
  20. </div>
  21. <script type="text/x-magento-init">
  22. {
  23. "*": {
  24. "Magento_Checkout/js/empty-cart": {}
  25. }
  26. }
  27. </script>