Advertisement
Guest User

Untitled

a guest
Mar 15th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>@ViewBag.Title - Contoso University</title>
  7. @Styles.Render("~/Content/css")
  8. @Scripts.Render("~/bundles/modernizr")
  9. </head>
  10. <body>
  11. <div class="navbar navbar-inverse navbar-fixed-top">
  12. <div class="container">
  13. <div class="navbar-header">
  14. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  15. <span class="icon-bar"></span>
  16. <span class="icon-bar"></span>
  17. <span class="icon-bar"></span>
  18. </button>
  19. @Html.ActionLink("Contoso University", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
  20. </div>
  21. <div class="navbar-collapse collapse">
  22. <ul class="nav navbar-nav">
  23. <li>@Html.ActionLink("Home", "Index", "Home")</li>
  24. <li>@Html.ActionLink("About", "About", "Home")</li>
  25. <li>@Html.ActionLink("Students", "Index", "Student")</li>
  26. <li>@Html.ActionLink("Courses", "Index", "Course")</li>
  27. <li>@Html.ActionLink("Instructors", "Index", "Instructor")</li>
  28. <li>@Html.ActionLink("Departments", "Index", "Department")</li>
  29. </ul>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="container body-content">
  34. @RenderBody()
  35. <hr />
  36. <footer>
  37. <p>&copy; @DateTime.Now.Year - Contoso University</p>
  38. </footer>
  39. </div>
  40.  
  41. @Scripts.Render("~/bundles/jquery")
  42. @Scripts.Render("~/bundles/bootstrap")
  43. @RenderSection("scripts", required: false)
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement