|
Revision 7, 1.2 kB
(checked in by sven, 3 years ago)
|
snapshot of elgg 0.1.2a
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
$sitename = sitename; |
|---|
| 4 |
$run_result = <<< END |
|---|
| 5 |
|
|---|
| 6 |
<h1>Welcome to $sitename</h1> |
|---|
| 7 |
<p> |
|---|
| 8 |
$sitename is a fully featured electronic portfolio, weblog and social networking system, |
|---|
| 9 |
connecting learners and creating communities of learning. |
|---|
| 10 |
</p> |
|---|
| 11 |
<p> |
|---|
| 12 |
For more information on e-portfolios, see <a href="http://www.eradc.org/blog/">the ERADC |
|---|
| 13 |
weblog</a> - or just sign up and experiment! |
|---|
| 14 |
</p> |
|---|
| 15 |
<table border="0" cellspacing="0" cellpadding="0"> |
|---|
| 16 |
<tr> |
|---|
| 17 |
<td><img src="/images/front_page/1.jpg" width="80" height="80" alt="1." /></td> |
|---|
| 18 |
<td width="50"> </td> |
|---|
| 19 |
<td>Sign up for an account - it's completely free, and all you need is a valid email address.</td> |
|---|
| 20 |
</tr> |
|---|
| 21 |
<tr> |
|---|
| 22 |
<td><img src="/images/front_page/2.jpg" width="80" height="80" alt="2." /></td> |
|---|
| 23 |
<td width="50"> </td> |
|---|
| 24 |
<td>Create your own weblog, journal, store of files like photos and Word documents - as much or as little as you want!</td> |
|---|
| 25 |
</tr> |
|---|
| 26 |
<tr> |
|---|
| 27 |
<td><img src="/images/front_page/3.jpg" width="80" height="80" alt="3." /></td> |
|---|
| 28 |
<td width="50"> </td> |
|---|
| 29 |
<td>Share them with your friends, academic staff and other $sitename users. <b>YOU</b> decide who can see them! </td> |
|---|
| 30 |
</tr> |
|---|
| 31 |
</table> |
|---|
| 32 |
|
|---|
| 33 |
END; |
|---|
| 34 |
|
|---|
| 35 |
?> |
|---|