Skip to content

Instantly share code, notes, and snippets.

@grusim
Last active December 20, 2015 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grusim/6112438 to your computer and use it in GitHub Desktop.
Save grusim/6112438 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>">
<head>
<meta charset="<?php echo $this->charset; ?>">
<title><?php echo $this->pageTitle; ?> - <?php echo $this->mainTitle; ?></title>
<base href="<?php echo $this->base; ?>">
<meta name="robots" content="<?php echo $this->robots; ?>">
<meta name="description" content="<?php echo $this->description; ?>">
<meta name="keywords" content="<?php echo $this->keywords; ?>">
<meta name="generator" content="Contao Open Source CMS">
<?php echo $this->framework; ?> <!-- beinhaltet Lizenz-Angaben Contao LGPL, contao.css, etc. -->
<!-- hier eigenes Stylesheet einbinden -->
<!-- hier eigenes JavaScript einbinden -->
<?php echo $this->head; ?>
</head>
<body id="top" class="{{ua::class}}<?php if ($this->class): ?> <?php echo $this->class; ?><?php endif; ?>"<?php if ($this->onload): ?> onload="<?php echo $this->onload; ?>"<?php endif; ?>>
<div id="page">
<?php if ($this->header): ?>
<header id="header">
<div class="inside">
<?php echo $this->header; ?>
</div>
</header>
<?php endif; ?>
<?php echo $this->getCustomSections('before'); ?>
<div id="main">
<div class="inside">
<?php echo $this->main; ?>
</div>
<?php echo $this->getCustomSections('main'); ?>
</div>
<?php echo $this->getCustomSections('after'); ?>
<!-- kein Footer benötigt ... -->
</div>
<!-- den Contao php cron Scheduler nicht benutzen ... -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment