diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-14 16:41:20 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-14 16:41:20 +0000 |
commit | 68d22133882d5af341ce756b5cb6cebd156084bd (patch) | |
tree | 8fc6ffad122adc750a8ec7f18b6f97d8c0d28266 /index.php | |
parent | 269c58d56242a9c4bf4cac067efdbc6774424a32 (diff) | |
download | elgg-68d22133882d5af341ce756b5cb6cebd156084bd.tar.gz elgg-68d22133882d5af341ce756b5cb6cebd156084bd.tar.bz2 |
Changes to site structure
git-svn-id: https://code.elgg.org/elgg/trunk@32 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 24 |
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 |