22 lines
512 B
PHTML
Raw Normal View History

<?php echo $this->doctype()?>
2010-11-22 12:50:12 +00:00
<html>
<head>
<?php echo $this->headMeta()?>
<?php echo $this->headTitle()?>
<?php echo $this->headStyle()?>
<?php echo $this->headLink()?>
<?php echo $this->headScript()?>
2010-11-22 12:50:12 +00:00
</head>
<body>
<div id="global">
<?php echo $this->render('header.phtml')?>
<div id="content">
<?php echo $this->layout()->content?>
<div id="footer">
<?php echo $this->render('footer.phtml')?>
</div>
</div>
</div>
<?php echo $this->inlineScript()?>
2010-11-22 12:50:12 +00:00
</body>
</html>