Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.84 KB | None | 0 0
  1. @using Sitecore.Mvc
  2. @using Sitecore.Mvc.Analytics.Extensions
  3. @using Sitecore.Mvc.Presentation
  4. @model RenderingModel
  5. @{
  6. Layout = null;
  7. }
  8. <!DOCTYPE html>
  9. <!--[if IE 9]><html lang="en" class="ie9 no-js"><![endif]-->
  10. <!--[if !IE]><!-->
  11. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  12. <!--<![endif]-->
  13. <head>
  14. <meta charset="utf-8" />
  15. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  16. <meta content="width=device-width, initial-scale=1.0" name="viewport" />
  17. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  18. <meta name="keywords" content="" />
  19. <meta name="description" content="MetaDescription goes here" />
  20. <title>@Html.Sitecore().Field("MetaTitle", new { DisableWebEdit = true })</title>
  21. <link rel="stylesheet" type="text/css" href="/Css/vendor.min.css" />
  22. <link rel="stylesheet" type="text/css" href="/Css/niteflight.min.css" />
  23. <link rel="stylesheet" type="text/css" href="/Css/addition.css">
  24. <link rel="stylesheet" type="text/css" href="/Css/font-awesome.min.css">
  25. <link rel="stylesheet" type="text/css" href="/Css/Difficulty.css">
  26. @Html.Sitecore().VisitorIdentification()
  27. </head>
  28. <body class="header-static ">
  29. <div id="main-container">
  30. <!-- [Page Header] -->
  31. <header class="header-static">
  32. <nav class="navbar navbar-default navbar-static" id="mainNavbar">
  33. <div class="container">
  34. <!-- [Company Logo] -->
  35. <div class="navbar-left">
  36. <a class="navbar-brand" href="index.html">
  37. <span class="logo">
  38. <img src="/Images/Logo_400x60.png" alt="The Adventure Company" width="400" height="60" />
  39. </span>
  40. </a>
  41. </div>
  42. <!-- [/Company Logo] -->
  43. <!-- [Main Navigation] -->
  44. <div class="navbar-left">
  45. <div class="collapse navbar-collapse" id="siteNavbar">
  46. <ul class="nav navbar-nav">
  47. <li><a class="text-uppercase" href="index.html">Home</a></li>
  48. <li class="dropdown">
  49. <a href="Event-Sections.html" class="dropdown-toggle text-uppercase" data-toggle="dropdown" role="button" aria-haspopup="true"
  50. aria-expanded="false">
  51. Events<span class="caret"></span>
  52. </a>
  53. <ul class="dropdown-menu">
  54. <li><a href="Event-List.html">Climbing</a></li>
  55. <li><a href="Event-List.html">Cycling</a></li>
  56. <li><a href="Event-List.html">Hiking</a></li>
  57. <li><a href="Event-List.html">Skiing</a></li>
  58. </ul>
  59. </li>
  60. </ul>
  61. </div>
  62. </div>
  63. <!-- [/Main Navigation] -->
  64. <!-- [Language Navigation] -->
  65. <div class="navbar-right">
  66. <div class="navbar-activity">
  67. <ul class="nav navbar-nav">
  68. <li class="dropdown">
  69. <a href="#" class="btn dropdown-toggle" data-toggle="dropdown">
  70. <i class="fa fa-globe"></i>
  71. </a>
  72. <ul class="dropdown-menu">
  73. <li class="active"><a href="#">English</a></li>
  74. <li><a href="#">Deutsch (Deutschland)</a></li>
  75. <li><a href="#">日本語 (日本)</a></li>
  76. </ul>
  77. </li>
  78. </ul>
  79. </div>
  80. </div>
  81. <!-- [/Language Navigation] -->
  82. </div>
  83. </nav>
  84. </header>
  85. <!-- [/Page Header] -->
  86. <!-- [Page Content] -->
  87. <main>
  88. @Html.Sitecore().Placeholder("main")
  89. </main>
  90. <!-- [/Page Content] -->
  91. <!-- [Footer Content] -->
  92. <footer>
  93. <div class="container">
  94. <div class="row">
  95. <div class="col-md-8">
  96. <!-- [About Us] -->
  97. <div class="well">
  98. <h4>About Us</h4>
  99. <p>
  100. The Adventure Company is a nonprofit organization. In each location where we sponsor events, we carefully vet local conservation
  101. organizations so that our members have the opportunity to donate their money where it will do the most good on a
  102. local level.
  103. </p>
  104. </div>
  105. <!-- [/About Us] -->
  106. </div>
  107. <div class="col-md-4">
  108. <!-- [Meta Navigation] -->
  109. <ul class="nav nav-stacked">
  110. <li>
  111. <a href="Content-page.html" title="Legal Notice">Legal Notice</a>
  112. </li>
  113. <li>
  114. <a href="Content-page.html" title="Privacy Policy">Privacy Policy</a>
  115. </li>
  116. <li>
  117. <a href="Content-page.html" title="Terms and Conditions">Terms and Conditions</a>
  118. </li>
  119. </ul>
  120. <!-- [/Meta Navigation] -->
  121. </div>
  122. </div>
  123. </div>
  124. <div class="footer-bottom text-center">
  125. <div class="container">
  126. <div class="row">
  127. <div class="col-md-12">
  128. <!-- [Copyright] -->
  129. <small class="copyright">
  130. <span>Copyright &copy; 2016 Version 1.0.0.0</span>
  131. </small>
  132. <!-- [/Copyright] -->
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. </footer>
  138. <!-- [/Footer Content] -->
  139. </div>
  140. <script src="/Scripts/Sitecore.Foundation.Theming.min.js"></script>
  141. <script src="/Scripts/Navigation.js"></script>
  142. </body>
  143. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement