source: ether_megapoli/web/projet/projet.jsp @ 89

Last change on this file since 89 was 89, checked in by vmipsl, 13 years ago

Import du projet MEGAPOLI

File size: 1.3 KB
Line 
1<%@ page import="com.medias.Context" contentType="text/html; charset=UTF-8"%>
2<%@ page import="com.medias.Context" %>
3<%@ page language="java" contentType="text/html; charset=UTF-8"%>
4<%@ taglib uri="/WEB-INF/tlds/struts-tiles.tld" prefix="tiles"%>
5<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html"%>
6<%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean"%>
7<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic"%>
8
9<tiles:insert page="/resources/templates/template.jsp" flush="true">
10
11        <bean:define type="java.lang.String" id="relativePath" value="<%=Context.getRelativePath(request)%>"/>
12
13        <tiles:put name="nav" value='<%=relativePath+"/nav.jsp"%>'/>
14
15        <tiles:put name="title" type="string">
16                <bean:message key="app.title"/> - <bean:message key="projet"/>
17        </tiles:put>
18
19        <tiles:put name="bodytitle" type="string">
20                <bean:message key="projet.title"/>
21        </tiles:put>
22
23        <tiles:put name="body" type="string">
24                <ul>
25                        <li><h3><html:link page="/projet/introduction.jsp">
26                                <bean:message key="projet.intro"/>
27                        </html:link></h3>
28                        </li>
29                </ul>
30                <ul>
31                        <li><h3><html:link page="/projet/objectifs.jsp">
32                                <bean:message key="projet.objectifs"/>
33                        </html:link></h3>
34                        </li>
35                </ul>
36                <ul>
37                        <li><h3><html:link page="/projet/mesures.jsp">
38                                <bean:message key="projet.mesures"/>
39                        </html:link></h3>
40                        </li>
41                </ul>
42        </tiles:put>
43</tiles:insert>
44       
Note: See TracBrowser for help on using the repository browser.