17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
@model IList<ProductOverviewModel>
|
|
@if (Model.Count > 0)
|
|
{
|
|
<div class="product-grid bestsellers">
|
|
<div class="title">
|
|
<strong>@T("Bestsellers")</strong>
|
|
</div>
|
|
<div class="item-grid">
|
|
@foreach (var item in Model)
|
|
{
|
|
<div class="item-box">
|
|
@await Html.PartialAsync("_ProductBox", item)
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
} |