wootook-reloaded/application/design/backend/base/default/scripts/page/2columns-left.phtml
Gregory PLANCHAT 66805034a6 Configuration & Layout architecture updates
Fixed production bug
Fixed styles
Updated Action Controller

Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
2012-01-13 23:36:03 +01:00

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>