23 lines
423 B
PHTML
23 lines
423 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>
|
||
|
<div id="footer">
|
||
|
<?= $this->render('footer.phtml') ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|