Blame view

samples/schedule-sample/src/main/webapp/pages/index.xhtml 689 Bytes
bernard authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!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:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:a4j="http://richfaces.org/a4j"
      xmlns:c="http://java.sun.com/jsp/jstl/core">
<ui:composition template="/pages/template.xhtml">
    <ui:define name="body">
        <ui:include src="settingsPanel.xhtml"/>
        <ui:include src="schedule.xhtml">
            <ui:param name="mode" value="ajax"/>
        </ui:include>
    </ui:define>
</ui:composition>
</html>