<!DOCTYPE html><html data-theme lang="<?= $this->language ?>"<?php if ($this->isRTL): ?> dir="rtl"<?php endif; ?>>
<head> <?php
$isEnvDev = strpos($this->base, 'localhost') !== false;
$isEnvDemo = strpos($this->base, 'think-digital.agency') !== false;
?>
<?php $this->block('head'); ?>
<base href="<?= $this->base ?>">
<title><?= $this->title ?></title>
<!-- meta: default --> <meta charset="<?= $this->charset ?>">
<?php $this->block('meta'); ?>
<meta name="robots" content="<?= $this->robots ?>">
<meta name="description" content="<?= $this->description ?>">
<meta name="generator" content="Contao Open Source CMS"> <?php $this->endblock(); ?>
<!-- meta: viewport --> <?php if ($this->viewport): ?>
<?= $this->viewport ?>
<?php else: ?>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<?php endif; ?>
<!-- meta: social --> <meta name="google-site-verification" content="" /> <!-- contao: stylesheets --> <?= $this->framework ?>
<?= $this->stylesheets ?>
<!-- contao: scripts --> <?= $this->mooScripts ?>
<?= $this->head ?>
<!-- theme: favicon --> <link rel="apple-touch-icon" sizes="180x180" href="files/theme/theme-design/favicon/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="files/theme/theme-design/favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="files/theme/theme-design/favicon/favicon-16x16.png"> <link rel="manifest" href="files/theme/theme-design/favicon/site.webmanifest"> <link rel="mask-icon" href="files/theme/theme-design/favicon/safari-pinned-tab.svg" color="#fadf14"> <meta name="msapplication-TileColor" content="#fadf14"> <meta name="theme-color" content="#ffffff"> <!-- theme: includes --> <?php include('include_global_resources.html5'); ?>
<?php include('include_helper_development.html5'); ?>
<!-- theme: config module --> {{insert_module::26}} <?php $this->endblock(); ?>
</head>
<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">
<?php $this->block('body'); ?>
<?php $this->sections('top'); ?>
<div class="m-page"> <?php $this->sections('before'); ?>
<?php $this->block('container'); ?>
<?php $this->block('header'); ?>
<?php if ($this->header): ?>
<?= $this->header ?>
<?php endif; ?>
<?php $this->endblock(); ?>
<?php $this->block('main'); ?>
<main class="m-main">
<?php if ($this->left || $this->right): ?>
<div class="u-root">
<div class="u-width-medium"> <div class="row"> <div class="col-12 col-sm-8 col-lg-9"> <?= $this->main ?>
<?php $this->sections('main'); ?>
</div>
<?php if ($this->left): ?>
<div class="col-12 col-sm-4 col-lg-3 order-sm-first">
<?php $this->block('left'); ?>
<aside class="m-sidebarLeft"><?= $this->left ?></aside>
<?php $this->endblock(); ?>
</div>
<?php endif; ?>
<?php if ($this->right): ?>
<div class="col-12 col-sm-4 col-lg-3">
<?php $this->block('right'); ?>
<aside class="m-sidebarRight"><?= $this->right ?></aside>
<?php $this->endblock(); ?>
</div>
<?php endif; ?>
</div>
</div> </div> <?php else: ?>
<?= $this->main ?>
<?php $this->sections('main'); ?>
<?php endif; ?>
</main>
<?php $this->endblock(); ?>
<?php $this->endblock(); ?>
<?php $this->sections('after'); ?>
<?php $this->block('footer'); ?>
<?php if ($this->footer): ?>
<footer class="m-footer">
<?= $this->footer ?>
</footer>
<?php endif; ?>
<?php $this->endblock(); ?>
</div>
<?php $this->sections('bottom'); ?>
<?php $this->endblock(); ?>
<!-- theme: layer --> <?php include('mod_layer.html5'); ?>
<!-- theme: svgs --> <?php include('include_global_svg.html5'); ?>
<?= $this->mootools ?>
<!-- theme: instant.page --> <script src="//instant.page/5.1.0" type="module" integrity="sha384-by67kQnR+pyfy8yWP4kPO12fHKRLHZPfEsiSXR8u2IKcTdxD805MGUXBzVPnkLHw"></script> <?= $this->jsonLdScripts ?>
</body>
</html>