aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/index.php b/index.php
new file mode 100644
index 000000000..2260b1e95
--- /dev/null
+++ b/index.php
@@ -0,0 +1,24 @@
+<?php
+
+ /**
+ * Elgg index page for web-based applications
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ /**
+ * Start the Elgg engine
+ */
+ require_once(dirname(__FILE__) . "/engine/start.php");
+
+ /**
+ * Load the front page
+ */
+ echo page_draw(null, elgg_view("homepage"));
+
+?> \ No newline at end of file