templates/theme-design/fe_page.html5 line 56

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html data-theme lang="<?= $this->language ?>"<?php if ($this->isRTL): ?> dir="rtl"<?php endif; ?>>
  3. <head>
  4.   <?php
  5.     $isEnvDev   strpos($this->base'localhost') !== false;
  6.     $isEnvDemo  strpos($this->base'think-digital.agency') !== false;
  7.   ?>
  8.   <?php $this->block('head'); ?>
  9.     <base href="<?= $this->base ?>">
  10.     <title><?= $this->title ?></title>
  11.     <!-- meta: default -->
  12.     <meta charset="<?= $this->charset ?>">
  13.     <?php $this->block('meta'); ?>
  14.       <meta name="robots" content="<?= $this->robots ?>">
  15.       <meta name="description" content="<?= $this->description ?>">
  16.       <meta name="generator" content="Contao Open Source CMS">
  17.     <?php $this->endblock(); ?>
  18.     <!-- meta: viewport -->
  19.     <?php if ($this->viewport): ?>
  20.       <?= $this->viewport ?>
  21.     <?php else: ?>
  22.       <meta name="viewport" content="width=device-width,initial-scale=1.0">
  23.     <?php endif; ?>
  24.     <!-- meta: social -->
  25.     <meta name="google-site-verification" content="" />
  26.     <!-- contao: stylesheets -->
  27.     <?= $this->framework ?>
  28.     <?= $this->stylesheets ?>
  29.     
  30.     <!-- contao: scripts -->
  31.     <?= $this->mooScripts ?>
  32.     <?= $this->head ?>
  33.     <!-- theme: favicon -->
  34.     <link rel="apple-touch-icon" sizes="180x180" href="files/theme/theme-design/favicon/apple-touch-icon.png">
  35.     <link rel="icon" type="image/png" sizes="32x32" href="files/theme/theme-design/favicon/favicon-32x32.png">
  36.     <link rel="icon" type="image/png" sizes="16x16" href="files/theme/theme-design/favicon/favicon-16x16.png">
  37.     <link rel="manifest" href="files/theme/theme-design/favicon/site.webmanifest">
  38.     <link rel="mask-icon" href="files/theme/theme-design/favicon/safari-pinned-tab.svg" color="#fadf14">
  39.     <meta name="msapplication-TileColor" content="#fadf14">
  40.     <meta name="theme-color" content="#ffffff">
  41.     <!-- theme: includes -->
  42.     <?php include('include_global_resources.html5'); ?>
  43.     <?php include('include_helper_development.html5'); ?>
  44.     <!-- theme: config module -->
  45.     {{insert_module::26}}
  46.   <?php $this->endblock(); ?>
  47. </head>
  48. <body id="top" class="<?= 'p-'.standardize($this->pageTitle); ?><?php if ($this->class): ?> <?= $this->class ?><?php endif; ?>"<?php if ($this->onload): ?> onload="<?= $this->onload ?>"<?php endif; ?> itemscope itemtype="http://schema.org/WebPage">
  49.   <?php $this->block('body'); ?>
  50.     <?php $this->sections('top'); ?>
  51.     <div class="m-page">
  52.       <?php $this->sections('before'); ?>
  53.       <?php $this->block('container'); ?>
  54.         <?php $this->block('header'); ?>
  55.           <?php if ($this->header): ?>
  56.             <?= $this->header ?>
  57.           <?php endif; ?>
  58.         <?php $this->endblock(); ?>
  59.         <?php $this->block('main'); ?>
  60.           <main class="m-main">
  61.             <?php if ($this->left || $this->right): ?>
  62.               <div class="u-root">
  63.                 <div class="u-width-medium">
  64.                   <div class="row">
  65.                     <div class="col-12 col-sm-8 col-lg-9">
  66.                       <?= $this->main ?>
  67.                       <?php $this->sections('main'); ?>
  68.                     </div>
  69.                     <?php if ($this->left): ?>
  70.                     <div class="col-12 col-sm-4 col-lg-3 order-sm-first">
  71.                       <?php $this->block('left'); ?>
  72.                         <aside class="m-sidebarLeft"><?= $this->left ?></aside>
  73.                       <?php $this->endblock(); ?>
  74.                     </div>
  75.                     <?php endif; ?>
  76.                     <?php if ($this->right): ?>
  77.                     <div class="col-12 col-sm-4 col-lg-3">
  78.                       <?php $this->block('right'); ?>
  79.                         <aside class="m-sidebarRight"><?= $this->right ?></aside>
  80.                       <?php $this->endblock(); ?>
  81.                     </div>
  82.                     <?php endif; ?>
  83.                   </div>
  84.                 </div>
  85.               </div>
  86.             <?php else: ?>
  87.               <?= $this->main ?>
  88.               <?php $this->sections('main'); ?>
  89.             <?php endif; ?>
  90.           </main>
  91.         <?php $this->endblock(); ?>
  92.       <?php $this->endblock(); ?>
  93.       <?php $this->sections('after'); ?>
  94.       <?php $this->block('footer'); ?>
  95.         <?php if ($this->footer): ?>
  96.           <footer class="m-footer">
  97.             <?= $this->footer ?>
  98.           </footer>
  99.         <?php endif; ?>
  100.       <?php $this->endblock(); ?>
  101.     </div>
  102.     <?php $this->sections('bottom'); ?>
  103.   <?php $this->endblock(); ?>
  104.   <!-- theme: layer -->
  105.   <?php include('mod_layer.html5'); ?>
  106.   <!-- theme: svgs -->
  107.   <?php include('include_global_svg.html5'); ?>
  108.   <?= $this->mootools ?>
  109.   <!-- theme: instant.page -->
  110.   <script src="//instant.page/5.1.0" type="module" integrity="sha384-by67kQnR+pyfy8yWP4kPO12fHKRLHZPfEsiSXR8u2IKcTdxD805MGUXBzVPnkLHw"></script>
  111.   <?= $this->jsonLdScripts ?>
  112. </body>
  113. </html>