From 039e48779d0e060dbe6f06b801d4a861d589c67a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 19 Aug 2017 13:14:32 +0200 Subject: [PATCH] Please cherry-pick: - used h:outputText (component) instead of (plain) text in view which is then controlled by the component - do *always* remember that JSF and all of its expansions are component frameworks, rendering a WUI (Web User Interface) and not yet-another template language MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- web/WEB-INF/templates/admin/admin_base.tpl | 4 +++- web/WEB-INF/templates/guest/guest_base.tpl | 7 +++++-- web/WEB-INF/templates/login/user/user_base.tpl | 12 ++++++++---- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/web/WEB-INF/templates/admin/admin_base.tpl b/web/WEB-INF/templates/admin/admin_base.tpl index ed355aec..1fd16dda 100644 --- a/web/WEB-INF/templates/admin/admin_base.tpl +++ b/web/WEB-INF/templates/admin/admin_base.tpl @@ -10,7 +10,9 @@ TODO: Add something here that should be displayed on all admin pages - - Default admin title + + + diff --git a/web/WEB-INF/templates/guest/guest_base.tpl b/web/WEB-INF/templates/guest/guest_base.tpl index 16c4f0b5..6310e131 100644 --- a/web/WEB-INF/templates/guest/guest_base.tpl +++ b/web/WEB-INF/templates/guest/guest_base.tpl @@ -2,10 +2,13 @@ + xmlns:ui="http://xmlns.jcp.org/jsf/facelets" + xmlns:h="http://xmlns.jcp.org/jsf/html"> - Default guest title + + + diff --git a/web/WEB-INF/templates/login/user/user_base.tpl b/web/WEB-INF/templates/login/user/user_base.tpl index 4d5e5fae..f398c0f2 100644 --- a/web/WEB-INF/templates/login/user/user_base.tpl +++ b/web/WEB-INF/templates/login/user/user_base.tpl @@ -6,19 +6,23 @@ xmlns:h="http://xmlns.jcp.org/jsf/html"> - - Default login title + + + + + - - - + + + -- 2.39.5