about summary refs log tree commit diff stats
path: root/central/trunk/index.php
blob: 1ef9c9d49291b41fc97a1ae625591c572a020faa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

/* InstaDisc Server - A Four Island Project */

include('instadisc.php');
include('template.php');

$template = new FITemplate('index');
$template->add('SITENAME', instaDisc_getConfig('siteName'));
$template->display();

?>