PHP Classes

File: application/layouts/Simple/scripts/layout.phtml

Recommend this page to a friend!
  Classes of Silvan von Felten   SVF_Log   application/layouts/Simple/scripts/layout.phtml   Download  
File: application/layouts/Simple/scripts/layout.phtml
Role: Application script
Content type: text/plain
Description: Simple layout
Class: SVF_Log
Logging class and plug-ins for Zend framework
Author: By
Last change:
Date: 15 years ago
Size: 488 bytes
 

Contents

Class file image Download
<?= $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>