blob: 6c9cdc55e0e9ab093904a6fc0418d9a573a00a26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Elgg footer
* The standard HTML footer that displays across the site
*
* @package Elgg
* @subpackage Core
*
*/
?>
<div class="elgg-page-footer">
<div class="elgg-page-footer-inner elgg-center elgg-width-classic clearfix">
<?php echo elgg_view('footer/links'); ?>
<a href="http://www.elgg.org" class="right">
<img src="<?php echo elgg_get_site_url(); ?>_graphics/powered_by_elgg_badge_drk_bckgnd.gif" alt="Powered by Elgg" />
</a>
</div>
</div>
<?php echo elgg_view('footer/analytics'); ?>
|