diff options
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/css/walled_garden.php | 30 | ||||
-rw-r--r-- | views/default/page/walled_garden.php | 57 |
2 files changed, 42 insertions, 45 deletions
diff --git a/views/default/css/walled_garden.php b/views/default/css/walled_garden.php new file mode 100644 index 000000000..7ba6141d4 --- /dev/null +++ b/views/default/css/walled_garden.php @@ -0,0 +1,30 @@ +<?php +/** + * Walled garden CSS + */ +?> +.elgg-grid-walledgarden { + margin:100px auto 0 auto; + padding:0; + width:600px; + text-align: left; + word-wrap:break-word; + background: gray; +} + +.elgg-grid-walledgarden > .elgg-col { + background: white; +} + +.elgg-heading-walledgarden { + color:#666666; + margin-top:80px; + line-height: 1.1em; +} + +.walledgardenlogin h2 { + color:#666666; + border-bottom:1px solid #CCCCCC; + margin-bottom:5px; + padding-bottom:5px; +}
\ No newline at end of file diff --git a/views/default/page/walled_garden.php b/views/default/page/walled_garden.php index 74b4f3029..0dcc8a9d7 100644 --- a/views/default/page/walled_garden.php +++ b/views/default/page/walled_garden.php @@ -1,59 +1,20 @@ <?php /** - * + * Walled garden page shell + * + * Used for the walled garden index page */ // Set the content type header("Content-type: text/html; charset=UTF-8"); -// Set title -$site_title = elgg_get_config('sitename'); -if (empty($vars['title'])) { - $title = $site_title; -} else if (empty($site_title)) { - $title = $vars['title']; -} else { - $title = $site_title . ": " . $vars['title']; -} +$site = elgg_get_site_entity(); +$title = $site->name; -// @todo - move the css below into it's own style-sheet -// that is called when running as a private network ?> <html> <head> <?php echo elgg_view('page/elements/head', $vars); ?> - <style type="text/css"> - /* *************************************** - WalledGarden - *************************************** */ - .elgg-grid-walledgarden { - margin:100px auto 0 auto; - padding:0; - width:600px; - text-align: left; - word-wrap:break-word; - background: gray; - } - - .elgg-grid-walledgarden > .elgg-col { - background: white; - } - - .elgg-heading-walledgarden { - color:#666666; - margin-top:80px; - line-height: 1.1em; - } - - .walledgardenlogin h2 { - color:#666666; - border-bottom:1px solid #CCCCCC; - margin-bottom:5px; - padding-bottom:5px; - } - - - </style> </head> <body> <div class="elgg-page elgg-page-walledgarden"> @@ -64,7 +25,13 @@ if (empty($vars['title'])) { <div class="elgg-inner"> <div class="elgg-grid elgg-grid-walledgarden"> <div class="elgg-col elgg-col-1of2"> - <h1 class="elgg-heading-walledgarden">Welcome to:<br /><?php echo $title; ?></h1> + <h1 class="elgg-heading-walledgarden"> + <?php + echo elgg_echo('walled_garden:welcome'); + echo ': <br/>'; + echo $title; + ?> + </h1> </div> <div class="elgg-col elgg-col-1of2"> <?php echo $vars['body']; ?> |