2011-01-06 09:29:38 +00:00

23 lines
491 B
PHTML

<?php echo $this->doctype();?>
<html>
<head>
<?php echo $this->headMeta();?>
<?php echo $this->headTitle();?>
<?php echo $this->headStyle();?>
<?php echo $this->headLink();?>
<?php echo $this->headScript();?>
</head>
<body>
<div id="global">
<div id="header">
<?php echo $this->render('header.phtml');?>
</div>
<div id="content">
<?php echo $this->layout()->content;?>
<div id="footer">
<?php echo $this->render('footer.phtml');?>
</div>
</div>
</div>
</body>
</html>