]> git.mxchange.org Git - pizzaservice-war.git/blob - web/templates.dist/guest_page.xhtml
Cleanup
[pizzaservice-war.git] / web / templates.dist / guest_page.xhtml
1 <?xml version='1.0' encoding='UTF-8' ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4           xmlns:ui="http://java.sun.com/jsf/facelets"
5           xmlns:h="http://xmlns.jcp.org/jsf/html"
6           xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
7           xmlns:f="http://xmlns.jcp.org/jsf/core"
8           >
9
10         <f:metadata>
11                 <f:viewAction action="#{controller.init()}" />
12         </f:metadata>
13
14         <c:set var="basePath" value="#{request.contextPath}" />
15
16         <ui:composition template="/WEB-INF/templates/base.tpl">
17                 <ui:define name="title">Your page's title here</ui:define>
18
19                 <ui:define name="menu">
20                         <ui:include id="menu" class="guest_menu" src="/WEB-INF/templates/guest/guest_menu.tpl" />
21                 </ui:define>
22
23                 <ui:define name="content_header">
24                         Your header above content here
25                 </ui:define>
26
27                 <ui:define name="content">
28                         Here goes your content.
29                 </ui:define>
30
31                 <ui:define name="footer">
32                         <ui:include id="footer" class="guest_footer" src="/WEB-INF/templates/guest/guest_footer.tpl" />
33                 </ui:define>
34         </ui:composition>
35 </html>