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>
26 lines
No EOL
1,004 B
PHTML
26 lines
No EOL
1,004 B
PHTML
<title>XNova:Legacies</title>
|
|
<link rel="shortcut icon" href="<?php echo $this->getUrl('favicon.ico')?>">
|
|
<?php foreach ($this->getCss() as $css):?>
|
|
<link rel="stylesheet" type="<?php echo $css['type']?>" href="<?php echo $this->getSkinUrl($css['path'])?>" />
|
|
<?php endforeach?>
|
|
<?php foreach ($this->getInlineCss() as $css):?>
|
|
<style type="<?php echo $css['type']?>">
|
|
/*<![CDATA[*/
|
|
<?php echo $css['content']?>
|
|
/*]]>*/
|
|
</style>
|
|
<?php endforeach?>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<?php foreach ($this->getJs() as $js):?>
|
|
<script type="<?php echo $js['type']?>" src="<?php echo $this->getUrl($js['path'])?>"></script>
|
|
<?php endforeach?>
|
|
<?php foreach ($this->getSkinJs() as $js):?>
|
|
<script type="<?php echo $js['type']?>" src="<?php echo $this->getSkinUrl($js['path'])?>"></script>
|
|
<?php endforeach?>
|
|
<?php foreach ($this->getInlineJs() as $js):?>
|
|
<script type="<?php echo $js['type']?>">
|
|
/*<![CDATA[*/
|
|
<?php echo $js['content']?>
|
|
/*]]>*/
|
|
</script>
|
|
<?php endforeach?> |