Fixed production bug Fixed styles Updated Action Controller Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
18 lines
487 B
PHTML
18 lines
487 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="header">
|
|
<?php echo $this->header->render()?>
|
|
</div>
|
|
<div class="left">
|
|
<?php echo $this->left->render()?>
|
|
</div>
|
|
<div class="content">
|
|
<?php echo $this->content->render()?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|