diff options
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 | ?> |