summaryrefslogtreecommitdiff
path: root/index.php
blob: 5b44fe1b2aa2aba3864b1eacba0d3dc3c9642e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
// $Id$

include_once "includes/common.inc";

page_header();

eval(variable_get("site_frontpage_extra", "") .";");
$function = variable_get("site_frontpage", "node") ."_page";
$function();

page_footer();

?>