diff options
| -rw-r--r-- | WebContent/templates/common.xhtml | 8 | ||||
| -rw-r--r-- | WebContent/templates/loggedin.xhtml | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/WebContent/templates/common.xhtml b/WebContent/templates/common.xhtml index 10334e1..39139d6 100644 --- a/WebContent/templates/common.xhtml +++ b/WebContent/templates/common.xhtml @@ -5,15 +5,15 @@ xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core"> - <head> + <h:head> <title><ui:insert name="pageTitle">Page Title</ui:insert></title> <link rel="stylesheet" type="text/css" href="../stylesheets/twocolumn.css" /> <link rel="stylesheet" type="text/css" href="../stylesheets/navigation.css" /> <link rel="stylesheet" type="text/css" href="../stylesheets/form.css" /> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> - </head> + </h:head> - <body> + <h:body> <div id="container"> @@ -55,6 +55,6 @@ </div> <!-- id="container" --> - </body> + </h:body> </html> diff --git a/WebContent/templates/loggedin.xhtml b/WebContent/templates/loggedin.xhtml index 98461e0..faea6e2 100644 --- a/WebContent/templates/loggedin.xhtml +++ b/WebContent/templates/loggedin.xhtml @@ -5,15 +5,15 @@ xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core"> - <head> + <h:head> <title><ui:insert name="pageTitle">Page Title</ui:insert></title> <link rel="stylesheet" type="text/css" href="../stylesheets/twocolumn.css" /> <link rel="stylesheet" type="text/css" href="../stylesheets/navigation.css" /> <link rel="stylesheet" type="text/css" href="../stylesheets/form.css" /> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> - </head> + </h:head> - <body> + <h:body> <div id="container"> @@ -55,6 +55,6 @@ </div> <!-- id="container" --> - </body> + </h:body> </html> |
