79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
@inherits UmbracoTemplatePage
|
|
@{
|
|
Layout = null;
|
|
var home = @CurrentPage.Site();
|
|
}
|
|
|
|
<!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 -->
|
|
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/css/site.css">
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
|
@RenderSection("Styles", false)
|
|
|
|
<!-- 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>
|
|
<header>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-xs-8 col-sm-12 col-md-4">
|
|
<a href="@home.Url">
|
|
<div class="brand" style="background-image:url('@(home.SiteLogo)?height=65&width=205&bgcolor=000')"></div>
|
|
</a>
|
|
</div>
|
|
<div class="col-sm-12 col-md-8">
|
|
<nav>
|
|
|
|
@{ Html.RenderPartial("MainNavigation"); }
|
|
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="toggle" class="toggle">
|
|
<a href="#" class="cross"><span></span></a>
|
|
</div>
|
|
</header>
|
|
|
|
@RenderBody()
|
|
|
|
<footer class="field dark">
|
|
<div class="container">
|
|
<div class="row">
|
|
|
|
@*@{ Html.RenderPartial("BottomNavigation"); }*@
|
|
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Javascripts -->
|
|
<script src="/js/jquery.min.js"></script>
|
|
<script src="/js/bootstrap.min.js"></script>
|
|
<script src="/scripts/site.js"></script>
|
|
@RenderSection("Scripts", false)
|
|
</body>
|
|
</html> |