blob: 9f36e2bf1eb028ce0e1733096595673ad6d0f515 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<?php
/**
* Elgg footer
* The standard HTML footer that displays across the site
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008-2009
* @link http://elgg.org/
*
*/
// get the tools menu
//$menu = get_register('menu');
?>
<div class="clearfloat"></div>
<div id="layout_footer">
<table width="958" height="79" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="210" height="50">
</td>
<td width="748" height="50" align="right">
<p class="footer_toolbar_links">
<?php
echo elgg_view('footer/links');
?>
</p>
</td>
</tr>
<tr>
<td width="210" height="28">
<a href="http://www.elgg.org" target="_blank">
<img src="<?php echo $vars['url']; ?>_graphics/powered_by_elgg_badge_drk_bckgnd.gif" border="0" />
</a>
</td>
<td width="748" height="28" align="right">
<p class="footer_legal_links"><small>
Powered by Elgg, the leading open source social networking platform
</small>
</p>
</td>
</tr>
</table>
</div><!-- /#layout_footer -->
<div class="clearfloat"></div>
</div><!-- /#page_wrapper -->
</div><!-- /#page_container -->
<!-- insert an analytics view to be extended -->
<?php
echo elgg_view('footer/analytics');
?>
</body>
</html>
|