Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 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 - Employee Portal</title>
  7. @Styles.Render("~/Content/css")
  8. @Scripts.Render("~/bundles/modernizr")
  9.  
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  11.  
  12.  
  13. </head>
  14. <body>
  15.  
  16.  
  17. <!--================== NAVBAR ===================-->
  18. <div class="navbar navbar-inverse navbar-fixed-top">
  19. <div class="container">
  20. <div class="navbar-header">
  21. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  22. <span class="icon-bar"></span>
  23. <span class="icon-bar"></span>
  24. <span class="icon-bar"></span>
  25. </button>
  26.  
  27. @Html.ActionLink("Employee Portal", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
  28. </div>
  29. <div class="navbar-collapse collapse">
  30. <ul class="nav navbar-nav">
  31. <li>@Html.ActionLink("Add Employee", "Create", "Employees")</li>
  32. <li>@Html.ActionLink("All Employees", "Index", "Employees")</li>
  33. <li>@Html.ActionLink("All Positions", "Index", "Positions")</li>
  34. <li>@Html.ActionLink("All Departments", "Index", "Departments")</li>
  35. <li>@Html.ActionLink("Reports", "Reports", "Home")</li>
  36. <li>@Html.ActionLink("Employee Activity", "Index", "ChangeLogs")</li>
  37. </ul>
  38. </div>
  39. </div>
  40. </div> <!-- End NAVBAR-->
  41.  
  42.  
  43.  
  44. <div class="container body-content">
  45. @RenderBody()
  46. <hr />
  47. <footer>
  48. <p>&copy; @DateTime.Now.Year - Conservice</p>
  49. </footer>
  50. </div>
  51.  
  52. @Scripts.Render("~/bundles/jquery")
  53. @Scripts.Render("~/bundles/bootstrap")
  54. @RenderSection("scripts", required: false)
  55. <script src="~/Scripts/bootstrap.js"></script>
  56.  
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement