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 %>>
|
2018-02-22 14:39:58 +01:00
|
|
|
<%-- Upgrade your Browser notice --%>
|
|
|
|
<!--[if lt IE 10]><div class="main-bn"><a href="https://www.google.com/chrome/browser/desktop/" title="<%t Page.UPGRADEBROWSER 'Upgrade your browser' %>"><%t Page.OUTDATEDBROWSER 'You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today.' %></a></div><![endif]-->
|
|
|
|
|
|
|
|
<%-- No JS enabled notice --%>
|
|
|
|
<noscript><div class="main-bn"><%t Page.JAVASCRIPTREQUIRED 'Please, enable javascript.' %></div></noscript>
|
|
|
|
|
|
|
|
<%-- Loading Spinner --%>
|
2018-05-28 14:42:05 +02:00
|
|
|
<div id="PageLoading"><div class="loading-spinner"><div class="bubblingG"><i id="bubblingG_1"></i><i id="bubblingG_2"></i><i id="bubblingG_3"></i></div><br/><%t Page.LOADINGTEXT 'LOADING ..' %></div></div>
|
|
|
|
|
2018-09-15 00:55:42 +02:00
|
|
|
<%-- Site Wide Alert Message --%>
|
|
|
|
<% include SiteWideMessage %>
|
|
|
|
|
2018-07-02 03:54:18 +02:00
|
|
|
<div class="wrapper">
|
|
|
|
<header id="Header" class="container">
|
|
|
|
<% include Header %>
|
|
|
|
</header>
|
2018-02-05 12:11:01 +01:00
|
|
|
|
2018-07-02 03:54:18 +02:00
|
|
|
<main id="MainContent" data-ajax-region="LayoutAjax">
|
|
|
|
$Layout
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer id="Footer" class="site-footer">
|
|
|
|
<% 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
|
|
|
|
|
2018-08-26 12:46:03 +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" />
|
|
|
|
|
2018-04-21 05:36:06 +02:00
|
|
|
<%-- 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>
|