Login   Register  
PHP Classes
elePHPant
Icontem

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

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2008-12-03 16:23
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>