template.xhtml 912 Bytes
<!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:sand="http://richfaces.org/sandbox" 
    xmlns:f="http://java.sun.com/jsf/core">


<head>
    <title>Sandbox samples</title>
    <link rel="stylesheet" type="text/css" href="#{request.contextPath}/resources/css/reset.css" />
    <link rel="stylesheet" type="text/css" href="#{request.contextPath}/resources/css/main.css" />
    <ui:insert name="htmlHead"></ui:insert>
</head>

<body>
    <div id="pageWrapper">
        <div>
            <ui:insert name="header" />
        </div>
        <div>
            <ui:insert name="content" />
        </div>
        <div>
            <ui:insert name="footer" />
        </div>
    </div>
</body>
</html>