<?php
// SEO Title...
if( !empty( $this->SeoTitle ) ) {
$this->headTitle()->set( $this->SeoTitle );
}
// SEO Description...
if( !empty( $this->SeoDescription ) ) {
$this->headMeta()->appendName( 'description', $this->SeoDescription );
}
// Components for the view...
$Components = [
'commercialcontactform'
];
?>
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<?php if( $this->websiteConfig( 'NoIndexNoFollow' ) ) : ?>
<meta name="robots" content="noindex,nofollow"/>
<?php endif; ?>
<?= $this->headTitle() ?>
<?= $this->headMeta() ?>
<link rel="icon" href="/favicon_com.ico" type="image/ico">
<link rel="stylesheet" type="text/css" href="/theme/css/foundation.min.css"/>
<link rel="stylesheet" type="text/css" href="/theme/css/slick.css"/>
<link rel="stylesheet" type="text/css" href="/theme/css/slick-theme.css"/>
<link rel="stylesheet" type="text/css" href="/theme/css/global.css"/>
<!-- <link rel="stylesheet" type="text/css" href="/theme/css/global-commercial.css"/> -->
<link rel="stylesheet" type="text/css" href="/theme/fonts/webfonts.css"/>
<link rel="shortcut icon" type="image/png" href="/commercial/favicon/favicon-32x32.png"/>
<script src="/theme/js/jquery.min.js"></script>
<script src="/theme/js/jquery.cookie.min.js"></script>
<?php /* DOCUMENT FADE-IN */ ?>
<script>
( function( $ ) {
$( 'html' ).css( { 'opacity' : 0 } );
$( function() {
var FadeIn = setTimeout( function() {
$( 'html' ).animate( { 'opacity' : 1 } );
}, 3000 );
$( window ).on( 'load', function() {
clearTimeout( FadeIn );
$( 'html' ).animate( { 'opacity' : 1 } );
} );
} );
} )( jQuery );
</script>
</head>
<body>
<div id="theme-root">
<?php /* GLOBAL COMMERCIAL HEADER */ ?>
<?= $this->editmode ? null : $this->template( ':Includes:commercial-header.html.php' ) ?>
<?= $this->editmode ? null : $this->template( ':Includes:commercial-header-propertynav.html.php', $this->propertynav ) ?>
<?php /* MAIN CONTENT REGION */ ?>
<main id="theme-main">
<?php foreach( $Components as $Component ) : ?>
<?php if( empty( $this->{ $Component } ) ) continue; ?>
<div id="theme-area-<?= $this->{ $Component }[ 'AreaIndex' ] ?>" class="theme-area <?= $this->{ $Component }[ 'AreaID' ] ?>">
<?= $this->template( ':Areas:'.$Component.'/view.html.php', $this->{ $Component } ) ?>
</div>
<?php endforeach; ?>
</main>
<?php /* GLOBAL COMMERCIAL FOOTER */ ?>
<?= $this->editmode ? null : $this->template( ':Includes:commercial-footer-popup.html.php' ) ?>
<?= $this->editmode ? null : $this->template( ':Includes:commercial-footer.html.php' ) ?>
</div>
<script src="/theme/js/what-input.min.js"></script>
<script src="/theme/js/foundation.min.js"></script>
<script src="/theme/js/slick.min.js"></script>
<script>$( document ).foundation();</script>
</body>
</html>