Guest User

Untitled

a guest
Jan 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title>@ViewBag.Title</title>
  7. @Styles.Render("~/Content/css")
  8. @Scripts.Render("~/bundles/modernizr")
  9. </head>
  10. <body>
  11. <div class="navbar navbar-fixed-top" style="background-color:deepskyblue">
  12. <div class="container">
  13. <div class="navbar-header">
  14. <button type="button" class="navbar-toggle position-static" data-toggle="collapse" data-target=".navbar-collapse" style="margin-top:50px;">
  15. <span class="icon-bar" style="background-color: white !important;"></span>
  16. <span class="icon-bar" style="background-color: white !important;"></span>
  17. <span class="icon-bar" style="background-color: white !important;"></span>
  18. </button>
  19. <img class="navbar" src="~/Content/Images/Logo.png" style="margin:25px;margin-right:50px;height:100px;" />
  20. </div>
  21. <div class="navbar-collapse collapse">
  22. <ul class="nav navbar-nav" style="margin-top:50px;">
  23. <li>@Html.ActionLink("Home", "Index", "Home", new { area = "", align = "middle" }, new { @style = "color:black;" })</li>
  24. <li>@Html.ActionLink("API", "Index", "Help", new { area = "" }, new { @style = "color:black;" })</li>
  25. <li>@Html.ActionLink("Models", "Index", "ModelsController", new { area = "" }, new { @style = "color:black;" })</li>
  26. </ul>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="container body-content" style="margin-top:150px">
  31. @RenderBody()
  32. <hr />
  33. <footer>
  34. <p>&copy; @DateTime.Now.Year - My ASP.NET Application</p>
  35. </footer>
  36. </div>
  37.  
  38. @Scripts.Render("~/bundles/jquery")
  39. @Scripts.Render("~/bundles/bootstrap")
  40. @RenderSection("scripts", required: false)
  41. </body>
  42. </html>
Add Comment
Please, Sign In to add comment