43 lines
1.2 KiB
Plaintext
43 lines
1.2 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-3.4.1.js", 0);
|
|
Html.RequiresJs("~/scripts/bootstrap.bundle.js", 1);
|
|
Html.RequiresJs("~/scripts/site.js", 3);
|
|
}
|
|
|
|
<!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()
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div role="content">
|
|
@CurrentPage.GetGridHtml("content", "fanoe")
|
|
</div>
|
|
|
|
<!-- Javascripts -->
|
|
@Html.RenderJsHere()
|
|
</body>
|
|
</html> |