diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 16:53:29 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 16:53:29 +0000 |
commit | 42cda8751ae6237f4ab9439b1daf6650b3db0f63 (patch) | |
tree | 29ee87b98532490ef1f9d1e46a44e28f4b526965 /views/default/pageshells | |
parent | 7a0e5b0db2a2b69ee227a3436f83251764e3233b (diff) | |
download | elgg-42cda8751ae6237f4ab9439b1daf6650b3db0f63.tar.gz elgg-42cda8751ae6237f4ab9439b1daf6650b3db0f63.tar.bz2 |
reverted back to a simple layout for now
git-svn-id: https://code.elgg.org/elgg/trunk@705 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/pageshells')
-rw-r--r-- | views/default/pageshells/pageshell.php | 57 |
1 files changed, 4 insertions, 53 deletions
diff --git a/views/default/pageshells/pageshell.php b/views/default/pageshells/pageshell.php index a3659da7e..0bd281a0c 100644 --- a/views/default/pageshells/pageshell.php +++ b/views/default/pageshells/pageshell.php @@ -41,60 +41,11 @@ <?php echo elgg_view("navigation/toolbox", $vars); ?>
</div>
-<div id="sidebar_right" class="ui-sortable">
-
- <div class="sort">
- <div class="content">
- <!-- top/left PNG -->
- <div class="t"></div>
- <!-- box content -->
- <a href="#" class="togglepanel">[-]</a>
- <a href="#" class="button_editpanel">Edit</a>
- <h1>title in here</h1>
-
- <div class="editpanel">
- <p>Here's the edit controls for this widget</p>
- </div>
- <div class="panelcontent">
- <?php
- // echo $vars['body'];
- // Removed to prevent double body!
- echo $vars['sidebar'];
- // Apps can extend the sidebar to add widgets
- echo elgg_view('sidebar',$vars);
- ?>
- </div>
- </div>
- <!-- bottom PNG -->
- <div class="b"><div></div></div>
- </div>
-
-</div><!-- /sidebar_right -->
-
<!-- get the main body -->
-<div id="mainContent" class="ui-sortable">
-
- <div class="sort">
- <div class="content">
- <!-- top/left PNG -->
- <div class="t"></div>
- <!-- box content -->
- <a href="#" class="togglepanel">[-]</a>
- <a href="#" class="button_editpanel">Edit</a>
- <h1><?php echo $title; ?></h1>
-
- <div class="editpanel">
- <p>Here's the edit controls for this widget</p>
- </div>
- <div class="panelcontent">
- <?php echo $vars['body']; ?>
- </div>
- </div>
- <!-- bottom PNG -->
- <div class="b"><div></div></div>
- </div>
-
-</div><!-- /mainContent -->
+ <div id="mainContent">
+ <h1><?php echo $title; ?></h1>
+ <?php echo $vars['body']; ?>
+ </div>
|