<?= $this->doctype() ?>
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
 
    <?= $this->headTitle() ?> 
 
    <?= $this->headMeta() ?> 
 
    <?= $this->headLink() ?> 
 
    <?= $this->headStyle() ?> 
 
    <?= $this->headScript() ?> 
 
    <style type="text/css">
 
          body { color: black; background: white; margin: 40px;}
 
         * { padding: 0px; border: 0px; margin: 0px; }
 
    </style>
 
</head>
 
<body>
 
    <div id="pageholder"><?= $this->layout()->content ?></div>
 
</body>
 
</html>
 
 
 
 |