home.xhtml
1.33 KB
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://jboss.com/products/seam/taglib"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
template="layout/template.xhtml">
<ui:define name="body">
<h1>Welcome to SeamTest in Action !</h1>
<rich:panel>
<h:panelGrid columns="2">
<h:graphicImage value="/img/seamlogo.png" alt="Seam logo"/>
<s:div styleClass="info">
<p><strong>This is a sample application!</strong></p>
<ul class="bullets">
<li><a href="seamTestInAction.zip">Download sources</a></li>
<li><a href="seamTestInAction.pdf">Download article in PDF</a></li>
<li><a href="http://seamframework.org/Community/SeamTestArticle">Forum thread</a></li>
</ul>
<p>Please note that sources do not include jar files. You can find them in seam distribution.</p>
</s:div>
</h:panelGrid>
</rich:panel>
</ui:define>
</ui:composition>