2018-02-05 12:11:01 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="$ContentLocale.ATT" dir="$i18nScriptDirection.ATT">
|
|
|
|
<%-- manifest="/cache.appcache" --%>
|
|
|
|
<head>
|
2018-03-24 11:45:31 +01:00
|
|
|
<% include Head %>
|
2018-02-05 12:11:01 +01:00
|
|
|
</head>
|
2018-03-24 11:45:31 +01:00
|
|
|
|
2018-02-05 12:11:01 +01:00
|
|
|
<body oncontextmenu="return false;">
|
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>
|
|
|
|
|
|
|
|
<header class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6">
|
2018-06-23 12:27:06 +02:00
|
|
|
<a href="/"><img src="/resources/app/client/dist/img/logo.png" alt="{$SiteConfig.Title}" /></a>
|
2018-05-28 14:42:05 +02:00
|
|
|
</div>
|
|
|
|
<div class="col-sm-6 text-right">
|
|
|
|
<% with $SiteConfig %>
|
|
|
|
<% if $PhoneNumber %>
|
|
|
|
<div class="phone-number">
|
|
|
|
<b>Call us today:</b>
|
|
|
|
$PhoneNumber
|
|
|
|
</div>
|
|
|
|
<% end_if %>
|
|
|
|
<% end_with %>
|
|
|
|
<% if $SearchForm %>
|
|
|
|
<div id="SearchFormContainer">$SearchForm</div>
|
|
|
|
<% end_if %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% include Navigation Navigation=$SiteConfig.Navigation %>
|
2018-06-23 12:27:06 +02:00
|
|
|
|
2018-02-05 12:11:01 +01:00
|
|
|
</header>
|
2018-06-23 12:27:06 +02:00
|
|
|
|
2018-02-05 12:11:01 +01:00
|
|
|
<main data-ajax-region="LayoutAjax">
|
|
|
|
$Layout
|
|
|
|
</main>
|
2018-06-23 12:27:06 +02:00
|
|
|
|
2018-02-05 12:11:01 +01:00
|
|
|
<footer>
|
|
|
|
|
|
|
|
</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
|
|
|
|
|
|
|
|
<%-- place extra requirements after this line --%>
|
2018-02-05 12:11:01 +01:00
|
|
|
</body>
|
2018-06-23 12:27:06 +02:00
|
|
|
</html>
|