diff --git a/configs/AppConfig.inc b/configs/AppConfig.inc index eec9e4e9..d895b5c7 100644 --- a/configs/AppConfig.inc +++ b/configs/AppConfig.inc @@ -34,7 +34,8 @@ 'genericname' => 'The Legend of Z', 'namespace' => 'hhu\\z\\', 'timeZone' => 'Europe/Berlin', - 'mailsender' => 'questlab@hhu.de', + 'mailsender' => '', + 'mailcontact' => '', 'registration_host' => '' ); diff --git a/controllers/HtmlController.inc b/controllers/HtmlController.inc index 8291537a..8c451441 100644 --- a/controllers/HtmlController.inc +++ b/controllers/HtmlController.inc @@ -74,6 +74,9 @@ // Set notifications $this->set('notifications', $this->Notification->getNotifications()); + + // Set some application data + $this->set('mailcontact', \nre\configs\AppConfig::$app['mailcontact']); } diff --git a/views/html/html.tpl b/views/html/html.tpl index 40b021db..1be15279 100644 --- a/views/html/html.tpl +++ b/views/html/html.tpl @@ -48,6 +48,9 @@
+ + +
diff --git a/www/css/desktop.css b/www/css/desktop.css index 423cd5a7..f60c060c 100644 --- a/www/css/desktop.css +++ b/www/css/desktop.css @@ -69,8 +69,9 @@ header a:hover{color:#fff} header .fa{color:#5e9499} header a:hover .fa{color:#7fb0b4} -#home{display:none;opacity:0} -#home a{line-height:93px;font-size:22px;letter-spacing:8px} +#home{display:none;opacity:0;margin-bottom:25px} +#home a{font-size:22px;letter-spacing:8px;padding-top:25px} +#home a.contact{font-size:14px;letter-spacing:0;text-transform:none;padding-top:0} #profile{float:right} #profile a{padding-top:10px;font-size:.875em;font-family:"Open sans",sans-serif;text-transform:none;margin-left:0} #profile img{float:left;width:36px;height:36px;margin-right:15px;border-radius:18px}