thufir

Untitled

Sep 30th, 2014
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.85 KB | None | 0 0
  1. <!DOCTYPE    html  PUBLIC "-//W3C//DTD XHTML 1.0  Transitional//EN"  
  2.    "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://java.sun.com/jsf/html"
  6.      xmlns:f="http://java.sun.com/jsf/core">
  7.     <h:head></h:head>
  8.     <h:body>
  9.         This and everything before will be ignored
  10.         <ui:composition template="template.xhtml">
  11.             <ui:define name="navigation">
  12.                 <ui:include src="menu.xhtml"/>
  13.             </ui:define>
  14.             <ui:define name="main">
  15.                 <h1>bird</h1>
  16.                 <ui:param name="bird" value="#{myQueueBean.next}"></ui:param>
  17.                
  18.             </ui:define>
  19.         </ui:composition>
  20.         This and everything after will be ignored
  21.     </h:body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment