Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 2x | <!-- Error message -->
<ish-error-message [error]="error" />
<!-- Info messages -->
<ish-basket-info />
<!-- Validation messages-->
<ish-basket-validation-results />
<div class="empty-cart">
<fa-icon [icon]="['fas', 'shopping-cart']" class="empty-cart-icon" />
<span class="empty-cart-icon-text">{{ 'shopping_cart.empty.zero.text' | translate }}</span>
<h2>{{ 'shopping_cart.empty.text' | translate }}</h2>
<a routerLink="/home" class="btn btn-primary btn-lg">{{
'shopping_cart.detailed.continue_shopping.link' | translate
}}</a>
</div>
|