Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 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 - My ASP.NET Application</title>
  7. @Styles.Render("~/Content/css")
  8. @Scripts.Render("~/bundles/modernizr")
  9.  
  10. </head>
  11. <body>
  12. <div class="navbar navbar-inverse navbar-fixed-top">
  13. <div class="container">
  14. <div class="navbar-header">
  15. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  16. <span class="icon-bar"></span>
  17. <span class="icon-bar"></span>
  18. <span class="icon-bar"></span>
  19. </button>
  20. @Html.ActionLink("My Sample Program", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
  21. </div>
  22. <div class="navbar-collapse collapse">
  23. <ul class="nav navbar-nav">
  24. <li>@Html.ActionLink("Home", "Index", "Home")</li>
  25. <li>@Html.ActionLink("About", "About", "Home")</li>
  26. <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
  27. <li>@Html.ActionLink("Students","Index","Students")</li>
  28. </ul>
  29. @Html.Partial("_LoginPartial")
  30. </div>
  31. </div>
  32. </div>
  33. <div class="container body-content">
  34. @RenderBody()
  35. <hr />
  36. <footer>
  37. <p>&copy; @DateTime.Now.Year - My ASP.NET Application</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