Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Default.cshtml

@model IList<ProductOverviewModel>
@if (Model.Count > 0)
{
    <section class="product-grid home-page-product-grid">
        <h2 class="title">
            @T("Homepage.Products")
        </h2>
        <div class="item-grid">
            @foreach (var item in Model)
            {
                <div class="item-box">
                    @await Html.PartialAsync("_ProductBox", item)
                </div>
            }
        </div>
    </section>
}