app/Resources/views/Commercial/propertyContact.html.php line 64

Open in your IDE?
  1. <?php
  2.     // SEO Title...
  3.     if( !empty( $this->SeoTitle ) ) {
  4.         $this->headTitle()->set$this->SeoTitle );
  5.     }
  6.     // SEO Description...
  7.     if( !empty( $this->SeoDescription ) ) {
  8.         $this->headMeta()->appendName'description'$this->SeoDescription );
  9.     }
  10.     // Components for the view...
  11.     $Components = [
  12.         'commercialcontactform'
  13.     ];
  14. ?>
  15. <!doctype html>
  16. <html class="no-js" lang="en">
  17.     <head>
  18.         <meta charset="utf-8"/>
  19.         <meta http-equiv="x-ua-compatible" content="ie=edge">
  20.         <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  21.         <?php if( $this->websiteConfig'NoIndexNoFollow' ) ) : ?>
  22.             <meta name="robots" content="noindex,nofollow"/>
  23.         <?php endif; ?>
  24.         <?= $this->headTitle() ?>
  25.         <?= $this->headMeta() ?>
  26.         <link rel="icon" href="/favicon_com.ico" type="image/ico">
  27.         <link rel="stylesheet" type="text/css" href="/theme/css/foundation.min.css"/>
  28.         <link rel="stylesheet" type="text/css" href="/theme/css/slick.css"/>
  29.         <link rel="stylesheet" type="text/css" href="/theme/css/slick-theme.css"/>
  30.         <link rel="stylesheet" type="text/css" href="/theme/css/global.css"/>
  31.         <!-- <link rel="stylesheet" type="text/css" href="/theme/css/global-commercial.css"/> -->
  32.         <link rel="stylesheet" type="text/css" href="/theme/fonts/webfonts.css"/>
  33.         <link rel="shortcut icon" type="image/png" href="/commercial/favicon/favicon-32x32.png"/>
  34.         <script src="/theme/js/jquery.min.js"></script>
  35.         <script src="/theme/js/jquery.cookie.min.js"></script>
  36.         <?php /* DOCUMENT FADE-IN */ ?>
  37.         <script>
  38.             ( function( $ ) {
  39.                 $( 'html' ).css( { 'opacity' : 0 } );
  40.                 $( function() {
  41.                     var FadeIn = setTimeout( function() {
  42.                         $( 'html' ).animate( { 'opacity' : 1 } );
  43.                     }, 3000 );
  44.                     $( window ).on( 'load', function() {
  45.                         clearTimeout( FadeIn );
  46.                         $( 'html' ).animate( { 'opacity' : 1 } );
  47.                     } );
  48.                 } );
  49.             } )( jQuery );
  50.         </script>
  51.     </head>
  52.     <body>
  53.         <div id="theme-root">
  54.             <?php /* GLOBAL COMMERCIAL HEADER */ ?>
  55.             <?= $this->editmode null $this->template':Includes:commercial-header.html.php' ?>
  56.             <?= $this->editmode null $this->template':Includes:commercial-header-propertynav.html.php'$this->propertynav ?>
  57.             <?php /* MAIN CONTENT REGION */ ?>
  58.             <main id="theme-main">
  59.                 <?php foreach( $Components as $Component ) : ?>
  60.                     <?php if( empty( $this->{ $Component } ) ) continue; ?>
  61.                     <div id="theme-area-<?= $this->{ $Component }[ 'AreaIndex' ?>" class="theme-area <?= $this->{ $Component }[ 'AreaID' ?>">
  62.                         <?= $this->template':Areas:'.$Component.'/view.html.php'$this->{ $Component } ) ?>
  63.                     </div>
  64.                 <?php endforeach; ?>
  65.             </main>
  66.             <?php /* GLOBAL COMMERCIAL FOOTER */ ?>
  67.             <?= $this->editmode null $this->template':Includes:commercial-footer-popup.html.php' ?>
  68.             <?= $this->editmode null $this->template':Includes:commercial-footer.html.php' ?>
  69.         </div>
  70.         <script src="/theme/js/what-input.min.js"></script>
  71.         <script src="/theme/js/foundation.min.js"></script>
  72.         <script src="/theme/js/slick.min.js"></script>
  73.         <script>$( document ).foundation();</script>
  74.     </body>
  75. </html>