2018-02-05 12:11:01 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="$ContentLocale.ATT" dir="$i18nScriptDirection.ATT">
|
|
|
|
<%-- manifest="/cache.appcache" --%>
|
|
|
|
<head>
|
2018-07-02 03:54:18 +02:00
|
|
|
<% include MetaHead %>
|
2018-02-05 12:11:01 +01:00
|
|
|
</head>
|
2018-03-24 11:45:31 +01:00
|
|
|
|
2018-08-26 12:46:03 +02:00
|
|
|
<body oncontextmenu="return false;"<% with $SiteConfig %> data-default-lng="$Longitude" data-default-lat="$Latitude"<% end_with %>>
|
2019-07-18 08:09:58 +02:00
|
|
|
<% include First %>
|
2018-09-15 00:55:42 +02:00
|
|
|
|
2018-07-02 03:54:18 +02:00
|
|
|
<div class="wrapper">
|
2019-11-07 19:26:33 +01:00
|
|
|
<header id="Header">
|
|
|
|
<div class="$DefaultContainer">
|
|
|
|
<% include Header %>
|
|
|
|
</div>
|
2018-07-02 03:54:18 +02:00
|
|
|
</header>
|
2018-02-05 12:11:01 +01:00
|
|
|
|
2018-07-02 03:54:18 +02:00
|
|
|
<main id="MainContent" data-ajax-region="LayoutAjax">
|
2019-09-07 03:39:49 +02:00
|
|
|
<% if $ParentID %>
|
|
|
|
$Breadcrumbs
|
|
|
|
<% end_if %>
|
|
|
|
|
2019-10-20 03:00:05 +02:00
|
|
|
<% if $SideBarView && $SideBar.Widgets.Count %>
|
2019-09-07 03:39:49 +02:00
|
|
|
<div class="$DefaultContainer">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8">
|
|
|
|
$Layout
|
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="page-content">
|
2019-10-20 03:00:05 +02:00
|
|
|
$SideBarView
|
2019-09-07 03:39:49 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
$Layout
|
|
|
|
<% end_if %>
|
2018-07-02 03:54:18 +02:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
|
2019-08-27 17:25:05 +02:00
|
|
|
<footer id="Footer" class="site-footer footer">
|
2018-07-02 03:54:18 +02:00
|
|
|
<% include Footer %>
|
2018-02-05 12:11:01 +01:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
<div class="hidden-print">
|
|
|
|
$BetterNavigator
|
|
|
|
</div>
|
|
|
|
|
2018-04-21 05:36:06 +02:00
|
|
|
<%-- Require CSS+JS from /public/resourses/[js,css]/[ClassName].[js,css] --%>
|
|
|
|
$AutoRequirements($ClassName).RAW
|
|
|
|
|
2019-11-07 19:26:33 +01:00
|
|
|
<%-- Mapbox
|
2018-08-26 12:46:03 +02:00
|
|
|
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.48.0/mapbox-gl.js"></script>
|
2019-11-07 19:26:33 +01:00
|
|
|
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.48.0/mapbox-gl.css" rel="stylesheet" />--%>
|
2018-08-26 12:46:03 +02:00
|
|
|
|
2019-11-07 19:26:33 +01:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i|Roboto:400,400i,700,700i&display=swap&subset=latin-ext" rel="stylesheet" />
|
|
|
|
<%-- place extra requirements after this line --%>
|
2018-07-02 03:54:18 +02:00
|
|
|
<div class="extra-code extra-code-site">
|
|
|
|
$SiteConfig.ExtraCode
|
|
|
|
</div>
|
2018-02-05 12:11:01 +01:00
|
|
|
</body>
|
2018-06-23 12:27:06 +02:00
|
|
|
</html>
|