aboutsummaryrefslogtreecommitdiff
path: root/views/default/layout/shells/one_column_with_sidebar.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/layout/shells/one_column_with_sidebar.php')
-rw-r--r--views/default/layout/shells/one_column_with_sidebar.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/views/default/layout/shells/one_column_with_sidebar.php b/views/default/layout/shells/one_column_with_sidebar.php
deleted file mode 100644
index cbf542174..000000000
--- a/views/default/layout/shells/one_column_with_sidebar.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/**
- * Elgg 1 column with sidebar layout
- *
- * @package Elgg
- * @subpackage Core
- *
- * @uses $vars['content'] The content string for the main column
- * @uses $vars['sidebar'] Optional content that is displayed in the sidebar
- */
-?>
-
-<div class="elgg-layout-sidebar centered clearfix" style="width: 990px;">
- <div class="elgg-sidebar elgg-aside">
- <?php
- echo elgg_view('layout/elements/sidebar', $vars);
- ?>
- </div>
-
- <div class="elgg-main elgg-body">
- <?php
- // @todo deprecated so remove in Elgg 2.0
- if (isset($vars['area1'])) {
- echo $vars['area1'];
- }
- if (isset($vars['content'])) {
- echo $vars['content'];
- }
- ?>
- </div>
-</div>