]> git.mxchange.org Git - jjobs-war.git/blob - web/WEB-INF/templates/base.tpl
Please cherry-pick:
[jjobs-war.git] / web / WEB-INF / templates / base.tpl
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html lang="#{localizationController.language}" xml:lang="#{localizationController.language}" xmlns="http://www.w3.org/1999/xhtml">
3
4         <f:view locale="#{localizationController.locale}" contentType="text/html"
5                         xmlns:f="http://java.sun.com/jsf/core"
6                         xmlns:h="http://java.sun.com/jsf/html"
7                         xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
8
9                 <ui:insert name="metadata" />
10
11                 <h:head>
12                         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
13
14                         <f:loadBundle var="msg" basename="org.mxchange.localization.bundle" />
15
16                         <h:outputStylesheet name="/css/default.css" />
17                         <h:outputStylesheet name="/css/cssLayout.css" />
18
19                         <title>JJobs - <ui:insert name="title">Default title</ui:insert></title>
20                 </h:head>
21
22                 <h:body>
23                         <div id="top">
24                                 <div id="page_header">
25                                         <div id="page_title">
26                                                 <h1>JJobs - <ui:insert name="title">Default title</ui:insert></h1>
27                                         </div>
28                                 </div>
29                         </div>
30
31                         <h:panelGroup id="menu_content" layout="block">
32                                 <div id="left">
33                                         <ui:insert name="menu">Default menu</ui:insert>
34                                         <ui:include src="/WEB-INF/templates/generic/locale_selection_box.tpl" />
35                                 </div>
36
37                                 <h:panelGroup id="content_outer" class="left_content" layout="block">
38                                         <div id="content_header">
39                                                 <ui:insert name="content_header">Default content header</ui:insert>
40                                         </div>
41
42                                         <div id="content">
43                                                 <ui:insert name="content">Default content</ui:insert>
44                                         </div>
45
46                                         <h:panelGroup styleClass="error_container" layout="block">
47                                                 <h:messages showDetail="true" errorClass="errors" fatalClass="errors" warnClass="errors" />
48                                         </h:panelGroup>
49                                 </h:panelGroup>
50
51                                 <div class="clear"></div>
52                         </h:panelGroup>
53
54                         <div id="page_footer">
55                                 <ui:insert name="footer">Default footer</ui:insert>
56                         </div>
57                 </h:body>
58         </f:view>
59 </html>