]> git.mxchange.org Git - jjobs-war.git/blob - web/index.xhtml
Please cherry-pick:
[jjobs-war.git] / web / index.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition
3         template="/WEB-INF/templates/guest/guest_base.tpl"
4         xmlns="http://www.w3.org/1999/xhtml"
5         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
6         xmlns:h="http://xmlns.jcp.org/jsf/html"
7         >
8
9         <ui:define name="document_guest_title">
10                 <h:outputText value="#{msg.PAGE_TITLE_INDEX_WELCOME}" />
11         </ui:define>
12
13         <ui:define name="content_header">
14                 <h:outputText value="#{msg.CONTENT_TITLE_INDEX_WELCOME}" />
15         </ui:define>
16
17         <ui:define name="content">
18                 <ui:fragment rendered="#{featureController.isFeatureEnabled('user_registration_in_index')}">
19                         <h:panelGroup layout="block" styleClass="registration_form">
20                                 <ui:fragment rendered="#{featureController.isFeatureEnabled('user_register_multiple_page')}">
21                                         <ui:include src="/WEB-INF/templates/guest/user/register/guest_form_register_page1.tpl" />
22                                 </ui:fragment>
23                         </h:panelGroup>
24
25                         <h:panelGroup styleClass="para" layout="block">
26                                 <h:outputText value="#{msg.CONTENT_PAGE_INDEX_PARA3}" />
27                         </h:panelGroup>
28                 </ui:fragment>
29
30                 <ui:fragment rendered="#{featureController.isFeatureEnabled('guest_index_content')}">
31                         <ui:include src="/WEB-INF/templates/guest/guest_index.tpl" />
32                 </ui:fragment>
33         </ui:define>
34 </ui:composition>