diff options
Diffstat (limited to 'mod/walledgarden/views/default/canvas/layouts')
-rw-r--r-- | mod/walledgarden/views/default/canvas/layouts/new_index.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mod/walledgarden/views/default/canvas/layouts/new_index.php b/mod/walledgarden/views/default/canvas/layouts/new_index.php new file mode 100644 index 000000000..d29b2c6e6 --- /dev/null +++ b/mod/walledgarden/views/default/canvas/layouts/new_index.php @@ -0,0 +1,30 @@ +<?php + + /** + * Elgg basic frontpage for the walled garden + * + * @package Elgg + * @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/ + */ + +?> + +<div id="custom_index"> + + <!-- left column content --> + <div id="index_left"> + <?php + //this displays some content when the user is logged out + if (!isloggedin()){ + //display the login form + echo $vars['area1']; + echo "<div class=\"clearfloat\"></div>"; + } + ?> + </div> + + <div class="clearfloat"></div> +</div>
\ No newline at end of file |