blob: 703cab84b9b22eb6731469012b0dd43c8d97abe2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/* InstaDisc Server - A Four Island Project */
include('includes/instadisc.php');
include('includes/template.php');
$template = new FITemplate('index');
$template->add('SITENAME', instaDisc_getConfig('siteName'));
$template->display();
?>
|