blob: d5b32f300e9edad0a43bea182c62dab0adbfc0d2 (
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
|
<?php
/**
* Elgg default spotlight
* The spotlight area 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/
*
*/
?>
<div id="spotlight_table">
<!-- spotlight RHS content -->
<div style="float:right;width:300px;" />
<h2>Information</h2>
<ul>
<li><a href="http://docs.elgg.org/wiki/Views/SystemViews">Populating this spotlight area</a></li>
<li><a href="http://community.elgg.org">Elgg open source community</a></li>
<li><a href="http://elgg.com">Elgg commercial services</a></li>
</ul>
</div>
<!-- spotlight LHS content -->
<div id="spotlight_table_left_area">
<h2>Welcome to Elgg</h2>
<p>Elgg is a social networking engine. It provides the necessary functionality to allow you to run your own social networking site, whether publicly (like Facebook) or internally on an Intranet.</p>
</div><!-- /spotlight LHS content -->
<div class="clearfloat"></div>
</div>
|