Started building page cleanup Modified code pools Backported layout/blocks/templates 3-step view system Reforged Overview page Moved graphics, added topnav template, fixed number render bug Added BCMath optionnal usage Updated BC Math comparison for capped resources Fixed planet resource production updates Various additions Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
18 lines
513 B
PHTML
18 lines
513 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 class="right">
|
|
<?php echo $this->left->render()?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|