Advertisement
porkporkpork

Untitled

Dec 11th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.15 KB | None | 0 0
  1. SHARED/LAYOUT.csml
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6.     <meta charset="utf-8" />
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8.     <title>@ViewData["Title"] - Workshops</title>
  9.  
  10.     <environment include="Development">
  11.         <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
  12.         <link rel="stylesheet" href="~/css/site.css" />
  13.     </environment>
  14.     <environment exclude="Development">
  15.         <link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css"
  16.               asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
  17.               asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
  18.         <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
  19.     </environment>
  20. </head>
  21. <body>
  22.     <header class="container clearfix">
  23.         <h1 class="ir"><a href="#" title="Theater Academy">Academie de mierennest</a></h1>
  24.  
  25.         <nav>
  26.             <h2 class="structural">Main menu</h2>
  27.             <ul>
  28.                 <li>@Html.ActionLink("Home", "Index", "NewsMessages", new { }, new { })</li>
  29.                 <li>@Html.ActionLink("Sessies", "Sessies", "Home", new { }, new { })</li>
  30.                 <li>@Html.ActionLink("Contact", "Contact", "Home", new { }, new { })</li>
  31.             </ul>
  32.             <partial name="_LoginPartial"/>
  33.         </nav>
  34.     </header>
  35.  
  36.  
  37.     <section id="banner">
  38.         <div class="container">
  39.             <div id="slogan">
  40.                 <h2>Koninklijke theater academie</h2>
  41.                 <p>Waar kunst en beeld samen een geheel vormen</p>
  42.             </div>
  43.         </div>
  44.     </section>
  45.     <partial name="_CookieConsentPartial" />
  46.  
  47.     <div class="container body-content">
  48.         @RenderBody()
  49.         <hr />
  50.         <footer>
  51.             <p>&copy; 2018 - Workshops</p>
  52.         </footer>
  53.     </div>
  54.  
  55.     <environment include="Development">
  56.         <script src="~/lib/jquery/dist/jquery.js"></script>
  57.         <script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
  58.         <script src="~/js/site.js" asp-append-version="true"></script>
  59.     </environment>
  60.     <environment exclude="Development">
  61.         <script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.3.1.min.js"
  62.                 asp-fallback-src="~/lib/jquery/dist/jquery.min.js"
  63.                 asp-fallback-test="window.jQuery"
  64.                 crossorigin="anonymous"
  65.                 integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT">
  66.         </script>
  67.         <script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js"
  68.                 asp-fallback-src="~/lib/bootstrap/dist/js/bootstrap.min.js"
  69.                 asp-fallback-test="window.jQuery && window.jQuery.fn && window.jQuery.fn.modal"
  70.                 crossorigin="anonymous"
  71.                 integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa">
  72.         </script>
  73.         <script src="~/js/site.min.js" asp-append-version="true"></script>
  74.     </environment>
  75.  
  76.     @RenderSection("Scripts", required: false)
  77. </body>
  78. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement