Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. <div class="navbar navbar-inverse navbar-fixed-top">
  2. <div class="container">
  3. <div class="navbar-header">
  4. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  5. <span class="icon-bar"></span>
  6. <span class="icon-bar"></span>
  7. <span class="icon-bar"></span>
  8. </button>
  9. <!-- 132390 19-9-2018: Het logo toegevoegd en daarin een breedte meegegeven via een class -->
  10. <img src="~/Content/Images/ToolsForever.jpg" class="custom-logo"/>
  11. </div>
  12. <div class="navbar-collapse collapse">
  13. @Html.ActionLink("ToolsForEver", "Index", "Home", new { area = "" }, new { @class = "navbar-brand custom-bedrijfsnaam" })
  14. @if (!User.Identity.IsAuthenticated)
  15. {
  16. @Html.ActionLink("Contact", "Contact", "Home", new { @class = "navbar-brand custom-bedrijfsnaam" })
  17. }
  18. @Html.Partial("_LoginPartial")
  19. </div>
  20. </div>
  21. </div>
  22. <div class="container body-content">
  23. @if (User.Identity.IsAuthenticated)
  24. {
  25. <div class="col-md-2">
  26. <ul class="nav">
  27. <!-- 13230- 19-09-2018: Checkt of er iemand in is gelogd en laat zo de juiste navigatie items zien -->
  28.  
  29. <li>@Html.ActionLink("Medewerkers", "Index", "AspNetUsers")</li>
  30. <li>@Html.ActionLink("Producten", "Index", "Artikel")</li>
  31. <li>@Html.ActionLink("Voorraad", "Index", "Voorraad")</li>
  32. <li>@Html.ActionLink("Locaties", "Index", "Locatie")</li>
  33. <li>@Html.ActionLink("Fabrieken", "Index", "Fabriek")</li>
  34. <li>@Html.ActionLink("Zoeken", "View", "Voorraad")</li>
  35.  
  36.  
  37. </ul>
  38. </div>
  39. <div class="col-md-10">
  40. @RenderBody()
  41. <hr />
  42. <footer>
  43. <p>&copy; @DateTime.Now.Year - ToolsForEver</p>
  44. </footer>
  45. </div>
  46.  
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement