Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core">
- <h:head></h:head>
- <h:body>
- This and everything before will be ignored
- <ui:composition template="template.xhtml">
- <ui:define name="navigation">
- <ui:include src="menu.xhtml"/>
- </ui:define>
- <ui:define name="main">
- <h1>bird</h1>
- <ui:param name="bird" value="#{myQueueBean.next}"></ui:param>
- </ui:define>
- </ui:composition>
- This and everything after will be ignored
- </h:body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment