source: ether_megapoli/web/index.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.2 KB
Line 
1<%@ page import="com.medias.Context" contentType="text/html; charset=UTF-8"%>
2<%@ page language="java" contentType="text/html; charset=UTF-8"%>
3<%@ taglib uri="/WEB-INF/tlds/struts-tiles.tld" prefix="tiles"%>
4<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html"%>
5<%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean"%>
6<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic"%>
7
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" type="string">
14                <html:link page="/index.jsp"><bean:message key="app.home"/></html:link>&gt;
15        </tiles:put>
16
17        <tiles:put name="title" type="string">
18                <bean:message key="app.title"/> - <bean:message key="app.welcome"/>
19        </tiles:put>
20
21        <tiles:put name="bodytitle" type="string">
22                <bean:message key="app.welcome"/>
23        </tiles:put>
24
25        <tiles:put name="body" type="string">
26                <%-- Place here the content of your page --%>
27                <table width="100%" height="100%">
28                        <tr><td align="center" valign="middle">
29                                <html:img page="/resources/images/megapoli/megapoli.jpg" alt="Logo MEGAPOLI"/>
30                        </td></tr>
31                </table>
32                <html:errors/>
33        </tiles:put>
34
35</tiles:insert>
Note: See TracBrowser for help on using the repository browser.