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

include_once "includes/common.inc";

page_header();

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

page_footer();

?>