diff --git a/SportsStore/SportsStore.WebUI/Views/Product/List.cshtml b/SportsStore/SportsStore.WebUI/Views/Product/List.cshtml index ba40d59..a85cdbd 100644 --- a/SportsStore/SportsStore.WebUI/Views/Product/List.cshtml +++ b/SportsStore/SportsStore.WebUI/Views/Product/List.cshtml @@ -7,10 +7,12 @@ @foreach (var p in Model.Products) { -
-

@p.Name

- @p.Description -

@p.Price.ToString("c")

+
+

+ @p.Name + @p.Price.ToString("c") +

+ @p.Description
}