Advertisement
Guest User

Untitled

a guest
Feb 5th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 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-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. @* <a href="Home"><img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSOzhgA881iYhpp4O-vFmoxnb3mQ5MZUQ9Wg1VPI6wfTwsxO0gs" width="50" height="50"></a>*@
  20. @Html.ActionLink("Invoke", "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", new { area = "" }, null)</li>
  25. <li>@Html.ActionLink("Games", "Index", "Home/GetAllGames", new { area = "" }, null)</li>
  26. <li>@Html.ActionLink("Items", "Index", "Home/Items", new { area = "" }, null)</li>
  27. <li>@Html.ActionLink("Forums", "Index", "Home/Forums", new { area = "" }, null)</li>
  28. <li>@Html.ActionLink("Help", "Index", "Help", new { area = "" }, null)</li>
  29. <li style=" position: relative;left: 620px;">@Html.ActionLink("Login or Sign up", "Index", "Home/Users", new { area = "" }, null)</li>
  30.  
  31. </ul>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="container body-content">
  36. @RenderBody()
  37. <hr />
  38. <footer>
  39. <p>&copy; @DateTime.Now.Year - My ASP.NET Application</p>
  40. </footer>
  41. </div>
  42.  
  43. @Scripts.Render("~/bundles/jquery")
  44. @Scripts.Render("~/bundles/bootstrap")
  45. @RenderSection("scripts", required: false)
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement