summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorPablo Martin <caedes@sindominio.net>2012-10-21 04:53:27 +0000
committerroot <root@migration.vz.lan>2012-10-21 04:53:45 +0000
commitddc8e975c3bbbd535fcaa1d2914e4f64ec270dde (patch)
tree3313dfee939342cb5024025c6f013e2357f46c0c /index.php
parent783e0fe18980e3a428b3eef17817ec64e22b6c2c (diff)
downloadsaravea_theme-ddc8e975c3bbbd535fcaa1d2914e4f64ec270dde.tar.gz
saravea_theme-ddc8e975c3bbbd535fcaa1d2914e4f64ec270dde.tar.bz2
change theme to extend front page instead of redeclaring it.
Diffstat (limited to 'index.php')
-rw-r--r--index.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/index.php b/index.php
deleted file mode 100644
index 0716540..0000000
--- a/index.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-/**
- * Elgg index page for web-based applications
- *
- * @package Elgg
- * @subpackage Core
- */
-
-if (elgg_is_logged_in()) {
- forward('activity');
-}
-
-elgg_load_css('n1:landing_page');
-
-$content = elgg_view('n1_theme/landing');
-$content .= elgg_view_title(elgg_echo('content:latest'));
-$content .= elgg_list_river();
-
-$login_box = elgg_view('core/account/login_box');
-
-$params = array(
- 'content' => $content,
- 'sidebar' => $login_box
-);
-$body = elgg_view_layout('one_sidebar', $params);
-echo elgg_view_page(null, $body);