You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by ma...@apache.org on 2004/01/27 23:11:47 UTC

cvs commit: jakarta-velocity-tools/examples/struts/examples/struts_app4/layout masterLayout.jsp

marino      2004/01/27 14:11:47

  Added:       examples/struts/examples/struts_app4/layout masterLayout.jsp
  Log:
  A new TilesTool for Struts 1.1 example app.
  
  Revision  Changes    Path
  1.1                  jakarta-velocity-tools/examples/struts/examples/struts_app4/layout/masterLayout.jsp
  
  Index: masterLayout.jsp
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
  
  <HTML>
  <HEAD>
      <TITLE><tiles:getAsString name="title"/></TITLE>
  </HEAD>
  <BODY>
  
  <TABLE cellSpacing=0 cellPadding=0 width=70% align=center border=0>
    <TR>
  	<TD valign="top" width="75" bgColor=#d9f1fc>
  
  	<!-- MENU -->
  	<tiles:insert attribute="menu"/>
  
      </TD>
      <TD>
  
  	<!-- BODY -->
  	<tiles:insert attribute="body"/>
  
      </TD>
    </TR>
    <tr>
      <td colspan="2">
  
  	<!-- FOOTER -->
  	<tiles:insert attribute="footer"/>
  
      </td>
    </tr>
  </table>
  </BODY>
  </HTML>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: velocity-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: velocity-dev-help@jakarta.apache.org