Advertisement
Guest User

Layouts

a guest
Oct 22nd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 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 - Kentucky HBPA</title>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="~/Content/socialMedia.css" />
  9. @Styles.Render("~/Content/css")
  10. @Scripts.Render("~/bundles/modernizr")
  11. </head>
  12. <body>
  13. <div class="navbar navbar-inverse navbar-fixed-top">
  14. <div class="container">
  15. <div class="navbar-header">
  16. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  17. <span class="icon-bar"></span>
  18. <span class="icon-bar"></span>
  19. <span class="icon-bar"></span>
  20. </button>
  21. @Html.ActionLink("Kentucky HBPA", "Index", "Home", new
  22. {
  23. area = ""
  24. }, new
  25. {
  26. @class = "navbar-brand"
  27. })
  28. </div>
  29. <div class="navbar-collapse collapse">
  30. <ul class="nav navbar-nav">
  31. <li>@Html.ActionLink("About", "About", "Home")</li>
  32. <li>@Html.ActionLink("Board of Directors", "BoardofDirectors", "Home")</li>
  33. <li>@Html.ActionLink("Membership", "Membership", "Home")</li>
  34. <li>@Html.ActionLink("Contact Us", "Contact", "Home")</li>
  35. <li>@Html.ActionLink("Gallery", "Index", "Photos")</li>
  36. <li>@Html.ActionLink("Events","Index", "Event")</li>
  37. <li>@Html.ActionLink("News", "News", "Home")</li>
  38. <li>@Html.ActionLink("Blog", "Blog", "Home")</li>
  39. <li>@Html.ActionLink("Legislation", "Legislation", "Home")</li>
  40. <li>@Html.ActionLink("Surveys","Index","Surveys")</li>
  41. </ul>
  42. @Html.Partial("_LoginPartial")
  43. </div>
  44. </div>
  45. </div>
  46. <div class="container body-content" style="background-position: center bottom">
  47. @RenderBody()
  48. <hr />
  49. <footer>
  50. <p>&copy; @DateTime.Now.Year - Kentucky Horsemen’s Benevolent and Protective Association, Inc. </p>
  51.  
  52. <p><a href="https://www.facebook.com/KYhbpa/" class="fa fa-facebook"</a>
  53. <a href="https://twitter.com/kyhbpa?lang=en" class="fa fa-twitter"></a></p>
  54. <p>
  55. <div align="right"><a href="https://www.paypal.com/us/home">
  56. <img src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-large.png" alt="Buy now with PayPal" /></a></div>
  57. </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