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.
17 lines
372 B
17 lines
372 B
@model BasketComponentViewModel
|
|
|
|
@{
|
|
ViewData["Title"] = "My Basket";
|
|
}
|
|
|
|
<a class="esh-basketstatus "
|
|
asp-area=""
|
|
asp-controller="Basket"
|
|
asp-action="Index">
|
|
<div class="esh-basketstatus-image">
|
|
<img src="~/images/cart.png" />
|
|
</div>
|
|
<div class="esh-basketstatus-badge">
|
|
@Model.ItemsCount
|
|
</div>
|
|
</a>
|
|
|