source: tapas/web/init.jsp @ 511

Last change on this file since 511 was 490, checked in by rboipsl, 12 years ago

ajout onglets

File size: 1.0 KB
Line 
1<%@ page contentType="text/html;charset=UTF-8" language="java" %>
2<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
3<%@ taglib prefix="tiles" uri="/WEB-INF/tlds/struts-tiles.tld" %>
4<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
5
6<tiles:insert page="/resources/templates/templateEther.jsp" flush="true">
7
8    <tiles:put name="insertCss" type="string"/>
9    <tiles:put name="insertJsOrJsp" type="string"/>
10
11    <tiles:put name="title" type="string"><spring:message code="app.title"/> - <spring:message code="title.home"/></tiles:put>
12    <tiles:put name="nav" type="string"><a href=""><spring:message code="label.home"/></a></tiles:put>
13
14
15    <%-- ****************** CONTENT ****************** --%>
16    <tiles:put name="bodytitle" type="string"><spring:message code="title.home"/></tiles:put>
17
18    <tiles:put name="body" type="string">
19        <c:if test="${not empty errors}">
20            <div id="errors"><spring:message code="${errors}"/></div>
21        </c:if>
22
23
24
25    </tiles:put>
26
27</tiles:insert>
Note: See TracBrowser for help on using the repository browser.