]> git.mxchange.org Git - pizzaservice-war.git/blob - web/WEB-INF/templates.dist/guest_page.xhtml
Continued:
[pizzaservice-war.git] / web / WEB-INF / templates.dist / guest_page.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <html xmlns="http://www.w3.org/1999/xhtml"
3           xmlns:ui="http://java.sun.com/jsf/facelets"
4           xmlns:h="http://xmlns.jcp.org/jsf/html"
5           xmlns:f="http://xmlns.jcp.org/jsf/core"
6           >
7
8         <ui:composition template="/WEB-INF/templates/guest/guest_base.tpl">
9                 <ui:define name="title">Your page's title here</ui:define>
10
11                 <ui:define name="menu">
12                         <ui:include id="menu" class="guest_menu" src="/WEB-INF/templates/guest/guest_menu.tpl" />
13                 </ui:define>
14
15                 <ui:define name="content_header">
16                         Your header above content here
17                 </ui:define>
18
19                 <ui:define name="content">
20                         Here goes your content.
21                 </ui:define>
22
23                 <ui:define name="footer">
24                         <ui:include id="footer" class="guest_footer" src="/WEB-INF/templates/guest/guest_footer.tpl" />
25                 </ui:define>
26         </ui:composition>
27 </html>