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