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>
18 lines
499 B
PHTML
18 lines
499 B
PHTML
<div class="navigation">
|
|
<?php foreach ($this->getAllPartials() as $partial):?>
|
|
<?php echo $partial->render()?>
|
|
<?php endforeach?>
|
|
<span class="last"></span>
|
|
</div>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
(function($){
|
|
var navigation = $('.navigation');
|
|
$('.navigation-node', navigation).hover(function(e){
|
|
$('.navigation-link,.last', $(this)).show();
|
|
}, function(e){
|
|
$('.navigation-link,.last', $(this)).hide();
|
|
});
|
|
})(jQuery);
|
|
//]]>
|
|
</script>
|