Advertisement
Guest User

Untitled

a guest
Jan 10th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 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. </head>
  10. <body background="http://images.nvidia.com/geforce-com/international/images/geforce-now/geforce-now-gamewall-v2.png">
  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 class="navbar-brand">
  20. <img src="http://39ahd9aq5l9101brf3b8dq58.wpengine.netdna-cdn.com/wp-content/uploads/2013/06/3D-Gaming.png" alt="" style="width:35px;height:35px;" >
  21. </a>
  22. <strong>@Html.ActionLink("Humble Games", "HomePage", "Store", new { area = "" }, new { @class = "navbar-brand" })</strong>
  23. </div>
  24. <div class="navbar-collapse collapse">
  25. <ul class="nav navbar-nav">
  26. <li>@Html.ActionLink("Home", "HomePage", "Store")</li>
  27. <li>@Html.ActionLink("Search", "Search", "Store")</li>
  28. <li>@Html.ActionLink("My Library", "MyLibrary", "User")</li>
  29. </ul>
  30. <ul class="nav navbar-nav navbar-right">
  31. <li class="dropdown">
  32. @if (HttpContext.Current.User.Identity.IsAuthenticated)
  33. {
  34. <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">@HttpContext.Current.User.Identity.Name <span class="caret"></span></a>
  35. <ul class="dropdown-menu">
  36. <li>@Html.ActionLink("My Profile", "MyProfile", "User")</li>
  37. <li>@Html.ActionLink("Activision Keys", "ActivisionKeys", "User")</li>
  38. <li role="separator" class="divider"></li>
  39. <li>@Html.ActionLink("Logout", "Logout", "Home")</li>
  40. </ul>
  41. }
  42. else
  43. {
  44. <li>@Html.ActionLink("Register", "Register", "Home")</li>
  45. <li>@Html.ActionLink("Login", "Login", "Home")</li>
  46. }
  47. </li>
  48. </ul>
  49. </div>
  50.  
  51. </div>
  52. </div>
  53. <div class="container body-content">
  54. @RenderBody()
  55. <hr />
  56. <footer>
  57. <p>&copy; @DateTime.Now.Year - Powered By Benjamin Corporation</p>
  58. </footer>
  59. </div>
  60.  
  61. @Scripts.Render("~/bundles/jquery")
  62. @Scripts.Render("~/bundles/bootstrap")
  63. @RenderSection("scripts", required: false)
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement