Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. @page
  2. @using TopsyTurvyCakes.Models
  3.  
  4.  
  5. <html>
  6. <head>
  7. <title>Topsy Turvy Cake Design</title>
  8. <link rel="stylesheet" href="~/site.css" />
  9. </head>
  10. <body>
  11.  
  12. <header class="container site-header">
  13. <div class="row">
  14. <h1 class="main-logo"><a href="/">Topsy Turvy Cake Design</a></h1>
  15. </div>
  16. <div class="row">
  17. <nav class="navbar">
  18. <ul class="nav nav-pills">
  19. <li><a href="/About">About</a></li>
  20. <li><a href="/Blog">Blog</a></li>
  21. <li><a class="active" href="/">Recipes</a></li>
  22. <li><a href="/Portfolio">Portfolio</a></li>
  23. <li><a href="/Contact">Contact</a></li>
  24. </ul>
  25. <ul class="nav nav-pills">
  26. <li>
  27. <a href="/Account/Login">Login</a>
  28. </li>
  29. </ul>
  30. </nav>
  31. </div>
  32. <div class="row">
  33. <h2 class="title">My Favorite Recipes</h2>
  34. </div>
  35. </header>
  36.  
  37.  
  38. <div class="container">
  39.  
  40. <div class="row recipes">
  41. @{
  42. RecipesService recipesService = new RecipesService();
  43. List<Recipe> recipeList = recipesService.GetAll().ToList();
  44. }
  45.  
  46. @foreach (Recipe recipe in recipeList)
  47. {
  48. <div class="recipe col-md-4">
  49. <img class="img img-thumbnail" src="@recipe.GetInlineImageSrc()" />
  50. <h3><a href="/Recipe">@recipe.Name</a></h3>
  51. <p>@recipe.Description</p>
  52. </div>
  53. }
  54.  
  55.  
  56. </div>
  57.  
  58. </div>
  59.  
  60. <footer>
  61. <div class="text-center">
  62. <span class="text-muted">Last Rendered: @DateTime.Now </span>
  63. </div>
  64. </footer>
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement