blob: 8ced805e74d06b6e5d163a21ba4823f70978a516 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/* InstaDisc Server - A Four Island Project */
include('includes/common.php');
$template = new FITemplate('index');
$template->add('TITLE', $config['title']);
$template->add('TEXT', $config['text']);
$template->display();
include('includes/footer.php');
?>
|