Updated signature image generator Navigation menu has been finalized Some deprectaed templates has been removed Fixed registration Fixed galaxy notices messages Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
26 lines
No EOL
1 KiB
PHTML
26 lines
No EOL
1 KiB
PHTML
<title><?php echo $this->escape($this->getTitle())?></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?> |