15 lines
431 B
PHTML
15 lines
431 B
PHTML
<html>
|
|
<head>
|
|
<?php echo $this->head->render()?>
|
|
</head>
|
|
<body<?php if ($classes = $this->getBodyClasses()):?> class="<?php echo $this->escape($classes)?>"<?php endif?>>
|
|
<div class="global">
|
|
<div class="content">
|
|
<?php if (isset($this->topnav)):?>
|
|
<?php echo $this->topnav->render()?>
|
|
<?php endif?>
|
|
<?php echo $this->content->render()?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|