Advertisement
Kenoru

ListOfProducts

May 31st, 2020
908
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.53 KB | None | 0 0
  1. @using BusinessLayer.Entities
  2. @model IEnumerable<ProductBLL>
  3.  
  4. @{
  5.     ViewBag.Title = "Магические приколясы";
  6. }
  7.  
  8. <div class="content">
  9.  
  10. @foreach(var p in @Model)
  11. {
  12.     <div class="product">
  13.         <div class="image">
  14.             <img src="..\img\@p.Image">
  15.         </div>
  16.         <div class="name">@p.Name</div>
  17.         <div class="description">@Html.Raw(p.Description)</div>
  18.  
  19.         <div class="price">@p.Price.ToString("# GP")</div>
  20.         <div class="button">Купить</div>
  21.     </div>
  22. }
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement