source: geisa/web/init.jsp @ 519

Last change on this file since 519 was 390, checked in by npipsl, 12 years ago

Création du projet GEISA

File size: 1.3 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 prefix="ether" tagdir="/WEB-INF/tags" %>
5
6<tiles:insert page="/resources/templates/templateEther.jsp" flush="true">
7
8    <tiles:put name="insertCss" type="string"></tiles:put>
9    <tiles:put name="insertJsOrJsp" type="string">
10        <ether:htmlJsp jspFile="init_script"></ether:htmlJsp>
11    </tiles:put>
12
13    <tiles:put name="title" type="string"><spring:message code="app.title"/> - <spring:message
14            code="title.home"/></tiles:put>
15    <tiles:put name="nav" type="string"><a href=""><spring:message code="label.home"/></a></tiles:put>
16
17
18    <%-- ****************** CONTENT ****************** --%>
19    <tiles:put name="bodytitle" type="string"><spring:message code="title.home"/></tiles:put>
20
21    <tiles:put name="body" type="string">
22
23        <div id="formulaire">
24
25        </div>
26
27        <script type="text/javascript">
28            var initTexts = $A( "" );
29
30            initTexts["label.submitButton"] = '<spring:message code="label.submitButton"/>';
31
32
33            var interfaceInit = new InterfaceInit();
34        </script>
35
36    </tiles:put>
37
38</tiles:insert>
Note: See TracBrowser for help on using the repository browser.