templates/buetow_2019/fe_page.html5 line 27

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="generator" content="Contao Open Source CMS">
  12.     <?php $this->endblock(); ?>
  13.     <?= $this->viewport ?>
  14.     <?= $this->framework ?>
  15.     <?= $this->stylesheets ?>
  16.     <?= $this->mooScripts ?>
  17.     <?= $this->head ?>
  18.     <?= $this->encoreStylesheets?>
  19.     <?= $this->encoreHeadScripts?>
  20.   <?php $this->endblock(); ?>
  21. </head>
  22. <body id="top"<?php if ($this->class): ?> class="<?= $this->class ?>"<?php endif; ?><?php if ($this->onload): ?> onload="<?= $this->onload ?>"<?php endif; ?> itemscope itemtype="http://schema.org/WebPage">
  23.     <?php if ('UA-XXXXX-X' != $GoogleAnalyticsId && !BE_USER_LOGGED_IN && !$this->hasAuthenticatedBackendUser()): ?>
  24.     <!-- Google Tag Manager (noscript) -->
  25.     <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WJQ4TCT"
  26.     height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  27.     <!-- End Google Tag Manager (noscript) -->
  28.     <?php endif; ?>
  29.   <?php $this->block('body'); ?>
  30.     <?php $this->sections('top'); ?>
  31.     <div id="wrapper">
  32.       <?php $this->block('header'); ?>
  33.         <?php if ($this->header): ?>
  34.           <!-- <header id="header" data-sticky-class="is-sticky" data-sticky-wrap="true" DISABLED-data-sticky-for="779" data-margin-top="0"> -->
  35.           <header id="header">
  36.             <div class="inside">
  37.               <?= $this->header ?>
  38.             </div>
  39.           </header>
  40.         <?php endif; ?>
  41.       <?php $this->endblock(); ?>
  42.       <?php $this->sections('before'); ?>
  43.       <?php $this->block('container'); ?>
  44.         <div id="container">
  45.           <?php $this->block('main'); ?>
  46.             <main id="main">
  47.               <div class="inside">
  48.                 <?= $this->main ?>
  49.               </div>
  50.               <?php $this->sections('main'); ?>
  51.             </main>
  52.           <?php $this->endblock(); ?>
  53.           <?php $this->block('left'); ?>
  54.             <?php if ($this->left): ?>
  55.               <aside id="left">
  56.                 <div class="inside">
  57.                   <?= $this->left ?>
  58.                 </div>
  59.               </aside>
  60.             <?php endif; ?>
  61.           <?php $this->endblock(); ?>
  62.           <?php $this->block('right'); ?>
  63.             <?php if ($this->right): ?>
  64.               <aside id="right">
  65.                 <div class="inside">
  66.                   <?= $this->right ?>
  67.                 </div>
  68.               </aside>
  69.             <?php endif; ?>
  70.           <?php $this->endblock(); ?>
  71.         </div>
  72.       <?php $this->endblock(); ?>
  73.       <?php $this->sections('after'); ?>
  74.       <?php $this->block('footer'); ?>
  75.         <?php if ($this->footer): ?>
  76.           <footer id="footer">
  77.             <div class="inside">
  78.               <?= $this->footer ?>
  79.             </div>
  80.           </footer>
  81.         <?php endif; ?>
  82.       <?php $this->endblock(); ?>
  83.     </div>
  84.     <?php $this->sections('bottom'); ?>
  85.   <?php $this->endblock(); ?>
  86.   <?= $this->encoreScripts?>
  87.   <?= $this->mootools ?>
  88. </body>
  89. </html>