@page "{categorySlug?}/{productSlug?}" @using VSH.Data.Static @using IOL.Helpers @model VSH.Pages.Produktar @{ var title = "Produktar"; if (Model.IsProduct) { title = Model.CurrentProduct.Name; } else if (Model.IsCategory) { title = Model.Categories.FirstOrDefault()?.Name; } ViewData["Title"] = title; }
@Model.CurrentProduct.Description