9e710effc1
Error email updates Piscal communication error handling Empty page for terms of service
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
@using ClientDependency.Core.Mvc
|
|
@inherits UmbracoTemplatePage
|
|
@{
|
|
Layout = null;
|
|
Html.RequiresCss("~/Content/bootstrap_leafweb.css");
|
|
Html.RequiresCss("~/Content/site.css");
|
|
Html.RequiresCss("~/Content/style.css");
|
|
Html.RequiresCss("~/css/rte.css");
|
|
Html.RequiresJs("~/scripts/jquery-1.12.4.js", 0);
|
|
Html.RequiresJs("~/scripts/bootstrap.js", 0);
|
|
Html.RequiresJs("~/scripts/site.js");
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
<!-- Meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="@CurrentPage.siteDescription">
|
|
|
|
<title>@CurrentPage.Name | @CurrentPage._siteTitle</title>
|
|
|
|
<!-- Fonts -->
|
|
<link href="//fonts.googleapis.com/css?family=Merriweather:400,700,300,900" rel="stylesheet" type="text/css">
|
|
<link href="//fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet" type="text/css">
|
|
|
|
<!-- CSS -->
|
|
@Html.RenderCssHere()
|
|
|
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div role="content">
|
|
@CurrentPage.GetGridHtml("content", "fanoe")
|
|
</div>
|
|
|
|
<!-- Javascripts -->
|
|
@Html.RenderJsHere()
|
|
</body>
|
|
</html> |