templates/relaunch2017/fe_page.html5 line 66

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="<?= $this->language ?>"<?php if ($this->isRTL): ?> dir="rtl"<?php endif; ?>>
  3. <head>
  4.   <?php $this->block('head'); ?>
  5.     <meta charset="<?= $this->charset ?>">
  6.     <title><?= $this->title ?></title>
  7.     <base href="<?= $this->base ?>">
  8.     <?php $this->block('meta'); ?>
  9.       <meta name="robots" content="<?= $this->robots ?>">
  10.       <meta name="description" content="<?= $this->description ?>">
  11.       <meta name="keywords" content="<?= $this->keywords ?>">
  12.       <meta name="generator" content="Contao Open Source CMS">
  13.     <?php $this->endblock(); ?>
  14.     <?= $this->viewport ?>
  15.     <?= $this->framework ?>
  16.     <?= $this->stylesheets ?>
  17.     <?= $this->mooScripts ?>
  18.     <?= $this->head ?>
  19.     <?php $this->block('html5shiv'); ?>
  20.       <!--[if lt IE 9]><script src="<?= TL_ASSETS_URL ?>assets/html5shiv/<?= $GLOBALS['TL_ASSETS']['HTML5SHIV'?>/html5shiv-printshiv.min.js"></script><![endif]-->
  21.     <?php $this->endblock(); ?>
  22.     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  23.     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  24.     <!--[if lt IE 9]>
  25.     <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  26.     <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  27.     <![endif]-->
  28.   <?php $this->endblock(); ?>
  29. </head>
  30. <body id="top" class="{{ua::class}}<?php if ($this->class) echo ' ' $this->class?>"<?php if ($this->onload): ?> onload="<?= $this->onload ?>"<?php endif; ?>>
  31.   <?php $this->block('body'); ?>
  32.     <?php $this->sections('top'); ?>
  33.     <div id="wrapper">
  34.       <?php $this->block('header'); ?>
  35.         <?php if ($this->header): ?>
  36.           <header id="header">
  37.             <div class="inside">
  38.               <?= $this->header ?>
  39.             </div>
  40.           </header>
  41.         <?php endif; ?>
  42.       <?php $this->endblock(); ?>
  43.       <?php $this->sections('before'); ?>
  44.       <?php $this->block('container'); ?>
  45.         <div id="container">
  46.           <?php $this->block('main'); ?>
  47.             <div id="main">
  48.               <div class="inside">
  49.                 <?= $this->main ?>
  50.                 <!-- No Left Sidebar -->
  51.                 <?php if (!$this->sections['sidebarLeft']): ?>
  52.                   <?php echo $this->sections['topBar']; ?>
  53.                   <?php echo $this->sections['pageTitle']; ?>
  54.                   <?php echo $this->sections['centerContent']; ?>
  55.                   <?php echo $this->sections['footerBar']; ?>
  56.                 <?php endif; ?>
  57.                 <!-- Sidebar Left -->
  58.                 <?php if ($this->sections['sidebarLeft']): ?>
  59.                   <?php echo $this->sections['topBar']; ?>
  60.                   <?php echo $this->sections['pageTitle']; ?>
  61.                   <div class="container">
  62.                     <div class="row">
  63.                       <div class="col-md-4">
  64.                         <?php echo $this->sections['sidebarLeft']; ?>
  65.                       </div>
  66.                       <div class="col-md-8">
  67.                         <?php echo $this->sections['centerContent']; ?>
  68.                       </div>
  69.                     </div>
  70.                   </div>
  71.                   <?php echo $this->sections['footerBar']; ?>
  72.                 <?php endif; ?>
  73.               </div>
  74.               <?php // $this->sections('main'); ?>
  75.             </div>
  76.           <?php $this->endblock(); ?>
  77.           <?php $this->block('left'); ?>
  78.             <?php if ($this->left): ?>
  79.               <aside id="left">
  80.                 <div class="inside">
  81.                   <?= $this->left ?>
  82.                 </div>
  83.               </aside>
  84.             <?php endif; ?>
  85.           <?php $this->endblock(); ?>
  86.           <?php $this->block('right'); ?>
  87.             <?php if ($this->right): ?>
  88.               <aside id="right">
  89.                 <div class="inside">
  90.                   <?= $this->right ?>
  91.                 </div>
  92.               </aside>
  93.             <?php endif; ?>
  94.           <?php $this->endblock(); ?>
  95.         </div>
  96.       <?php $this->endblock(); ?>
  97.       <?php $this->sections('after'); ?>
  98.       <?php $this->block('footer'); ?>
  99.         <?php if ($this->footer): ?>
  100.           <footer id="footer">
  101.             <div class="inside">
  102.               <?= $this->footer ?>
  103.             </div>
  104.           </footer>
  105.         <?php endif; ?>
  106.       <?php $this->endblock(); ?>
  107.     </div>
  108.     <?php $this->sections('bottom'); ?>
  109.   <?php $this->endblock(); ?>
  110.   <?= $this->mootools ?>
  111. </body>
  112. </html>