23 lines
416 B
PHTML
Raw Normal View History

<?=$this->doctype();?>
2010-11-22 12:50:12 +00:00
<html>
<head>
<?=$this->headMeta();?>
<?=$this->headTitle();?>
<?=$this->headStyle();?>
<?=$this->headLink();?>
<?=$this->headScript();?>
2010-11-22 12:50:12 +00:00
</head>
<body>
<div id="global">
<div id="header">
<?=$this->render('header.phtml')?>
2010-11-22 12:50:12 +00:00
</div>
<div id="content">
<?=$this->layout()->content?>
2011-01-05 15:14:23 +00:00
<div id="footer">
<?=$this->render('footer.phtml')?>
2011-01-05 15:14:23 +00:00
</div>
2010-11-22 12:50:12 +00:00
</div>
</div>
</body>
</html>