Remove trunk directory

This commit is contained in:
Paulo Gustavo Veiga
2009-11-06 23:30:29 -02:00
parent 2494133fed
commit 75470a91fd
715 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<%@ taglib prefix="tiles" uri="http://struts.apache.org/tags-tiles" %>
<%@ include file="/jsp/init.jsp" %>
<tiles:importAttribute name="title" scope="page"/>
<tiles:importAttribute name="details" scope="page"/>
<div class="modalDialog">
<!-- Header can be customized -->
<c:if test="${(not empty pageScope.title)}">
<h1>
<spring:message code="${pageScope.title}"/>
</h1>
<c:if test="${(not empty pageScope.details)}">
<h2>
<spring:message code="${pageScope.details}"/>
</h2>
</c:if>
</c:if>
<tiles:insert name="body"/>
</div>