2019-04-11 00:15:29 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="$ContentLocale.ATT" dir="$i18nScriptDirection.ATT">
|
|
|
|
<%-- manifest="/cache.appcache" --%>
|
|
|
|
<head>
|
|
|
|
<% include MetaHead %>
|
|
|
|
</head>
|
|
|
|
|
2021-05-03 19:11:13 +02:00
|
|
|
<body <% with $SiteConfig %> data-default-lng="$Longitude" data-default-lat="$Latitude"<% end_with %>>
|
2019-09-07 03:39:49 +02:00
|
|
|
<% include First %>
|
2019-04-11 00:15:29 +02:00
|
|
|
|
|
|
|
<div class="wrapper">
|
|
|
|
<header id="Header" class="container">
|
|
|
|
<% include Header %>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main id="MainContent" data-ajax-region="LayoutAjax">
|
2019-09-07 03:39:49 +02:00
|
|
|
<% if $ParentID %>
|
|
|
|
$Breadcrumbs
|
|
|
|
<% end_if %>
|
|
|
|
|
|
|
|
<% if $SideBarView || $Parent.SideBarView %>
|
|
|
|
<div class="$DefaultContainer">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8">
|
|
|
|
$Layout
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="page-content">
|
|
|
|
<% if $SideBarView %>
|
|
|
|
$SideBarView
|
|
|
|
<% else %>
|
|
|
|
$Parent.SideBarView
|
|
|
|
<% end_if %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
$Layout
|
|
|
|
<% end_if %>
|
2019-04-11 00:15:29 +02:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
|
2019-09-07 03:39:49 +02:00
|
|
|
<footer id="Footer" class="site-footer footer">
|
2019-04-11 00:15:29 +02:00
|
|
|
<% include Footer %>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
<div class="hidden-print">
|
|
|
|
$BetterNavigator
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%-- Require CSS+JS from /public/resourses/[js,css]/[ClassName].[js,css] --%>
|
2019-09-07 03:39:49 +02:00
|
|
|
$AutoRequirements($ClassName).RAW
|
2019-04-11 00:15:29 +02:00
|
|
|
|
|
|
|
<%-- Mapbox --%>
|
|
|
|
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.48.0/mapbox-gl.js"></script>
|
|
|
|
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.48.0/mapbox-gl.css" rel="stylesheet" />
|
|
|
|
|
2019-09-07 03:39:49 +02:00
|
|
|
<%-- place extra requirements after this line --%>
|
2019-04-11 00:15:29 +02:00
|
|
|
<div class="extra-code extra-code-site">
|
|
|
|
$SiteConfig.ExtraCode
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|