stand in default theme
[elgg.git] / index.php
blobb67696fed65d7765f3b8a617b33fb7e37e70e738
1 <?php
3 global $CFG;
5 require_once(dirname(__FILE__)."/includes.php");
6 templates_page_setup();
7 if (logged_on) {
8 $body = templates_draw(array(
9 'context' => 'frontpage_loggedin'
12 } else {
13 $body = templates_draw(array(
14 'context' => 'frontpage_loggedout'
19 echo templates_page_draw( array(
20 $CFG->sitename,
21 $body