blob: 4828c5caac908e4af78ce625f91f37a956dbc494 (
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
* @link http://elgg.org/
*
*/
?>
<div class="clearfloat"></div>
<div id="layout_footer">
<table width="958" height="79" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="310" height="50">
<a href="http://www.elgg.org" target="_blank">
<img src="<?php echo $vars['url']; ?>_graphics/footer_logo.gif" border="0" />
</a>
</td>
<td width="648" height="50" align="right">
<p class="footer_toolbar_links">
| <a href="">Dashboard</a>
| <a href="">Profile</a>
| <a href="">Messages</a>
| <a href="">Shouts</a>
| <a href="">Blog</a>
| <a href="">Forums</a>
| <a href="">Sharing</a>
| <a href="">Files</a> |
</p>
</td>
</tr>
<tr>
<td width="310" height="28">
<p><small>Copyright © 2008 elgg.org. All rights reserved.</small></p>
</td>
<td width="648" height="28" align="right">
<p class="footer_legal_links"><small>
| <a href="">Privacy Statement</a>
| <a href="">Security Statement</a>
| <a href="">Terms of Use</a> |
</small>
</p>
</td>
</tr>
</table>
</div><!-- /#layout_footer -->
<div class="clearfloat"></div>
</div><!-- /#page_wrapper -->
</div><!-- /#page_container -->
</body>
</html>
|