UP | HOME

templateApp.xhtml

<!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">
<head>
  <title><ui:insert name="title">Default title</ui:insert></title>
  <link rel="stylesheet" type="text/css" href="#{request.contextPath}/css/pageLayout.css"/>
</head>

<body>

<div id="header">
    <ui:insert name="header">
        <ui:include src="/WEB-INF/template/header.xhtml"/>
    </ui:insert>
</div>


<div id="left">
        <ui:insert name="navigation" >
                <ui:include  src="/WEB-INF/template/navigation.xhtml">
            <ui:param name="viewBean" value="#{applicationBean}" />
        </ui:include>   
        </ui:insert>
</div>


<div id="center">
  <div id="titleText"> 
      <ui:insert name="title" />
  </div>
  <div id="content" >
      <ui:insert name="content">
      Content comes here
      </ui:insert>
  </div>
</div>

<div id="right">
  <ui:insert name="news">
    <ui:include src="/WEB-INF/template/news.xhtml"/>
  </ui:insert>
</div>

<div id="footer">
  <ui:insert name="footer">
    <ui:include src="/WEB-INF/template/footer.xhtml"/>  
  </ui:insert>
</div>

</body>

</html>

Author: Rainer Schuler

Date: 2011-02-11 Fr

HTML generated by org-mode 7.4 in emacs 22