diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-06-23 10:00:56 +0000 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-06-23 10:00:56 +0000 |
| commit | 24ee5485d1bb0c86833977dbfbd2e4999dba8e16 (patch) | |
| tree | b428b873939bcd7059291eeaeac07b06eb2ec0fa /central/trunk/index.php | |
| parent | c6e3d927c343280bc1fd6d0dfdb64658151e9aac (diff) | |
| download | instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.tar.gz instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.tar.bz2 instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.zip | |
Moved over to the Four Island Templating System.
Diffstat (limited to 'central/trunk/index.php')
| -rw-r--r-- | central/trunk/index.php | 11 |
1 files changed, 6 insertions, 5 deletions
| diff --git a/central/trunk/index.php b/central/trunk/index.php index 6ba21ab..8ced805 100644 --- a/central/trunk/index.php +++ b/central/trunk/index.php | |||
| @@ -2,12 +2,13 @@ | |||
| 2 | 2 | ||
| 3 | /* InstaDisc Server - A Four Island Project */ | 3 | /* InstaDisc Server - A Four Island Project */ |
| 4 | 4 | ||
| 5 | include('common.php'); | 5 | include('includes/common.php'); |
| 6 | 6 | ||
| 7 | ?>Welcome to the <?php echo($config['title']); ?> InstaDisc Server!<P><?php | 7 | $template = new FITemplate('index'); |
| 8 | $template->add('TITLE', $config['title']); | ||
| 9 | $template->add('TEXT', $config['text']); | ||
| 10 | $template->display(); | ||
| 8 | 11 | ||
| 9 | echo($config['text']); | 12 | include('includes/footer.php'); |
| 10 | |||
| 11 | include('footer.php'); | ||
| 12 | 13 | ||
| 13 | ?> | 14 | ?> |
