stand in default theme
[elgg.git] / home.php
blobb1d1f67b6399a050c2c6b273ac6d91c972fb5871
1 <?php
3 require_once(dirname(__FILE__)."/includes.php");
4 templates_page_setup();
5 if (isloggedin()) {
6 $body = run("content:mainindex");
7 } else {
8 $body = run("content:mainindex:loggedout");
11 echo templates_page_draw( array(
12 sitename,
13 templates_draw(array(
14 'body' => $body,
15 'title' => __gettext("Main Index"),
16 'context' => 'contentholder'