Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/jsp/mainlayout.jsp @ 14:9719cbd1a23f
Import of MainLayout, Styles, images and Scripts from old System Revision: 3101 Does not compile
gnv/trunk@97 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Wed, 16 Sep 2009 13:03:38 +0000 |
parents | |
children | 4ef6e4e9ef15 |
comparison
equal
deleted
inserted
replaced
13:2535158e2687 | 14:9719cbd1a23f |
---|---|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
3 | |
4 <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" language="java" %> | |
5 <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %> | |
6 <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %> | |
7 <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> | |
8 <%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %> | |
9 <html:html xhtml="true" locale="true"> | |
10 <head> | |
11 <title> | |
12 <bean:message key="gnviewer.app.title"/> | |
13 </title> | |
14 <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> | |
15 <meta http-equiv="Content-Script-Type" content="text/javascript"/> | |
16 <meta http-equiv="Content-Style-Type" content="text/css"/> | |
17 <meta http-equiv="Expires" content="Mon, 01 Jan 1990 00:00:01 GMT"/> | |
18 <meta http-equiv="pragma" content="no-cache"/> | |
19 <meta http-equiv="cache-control" content="no-cache"/> | |
20 <meta name="robots" content="noindex"/> | |
21 <link href="styles/default.css" rel="stylesheet" type="text/css"/> | |
22 <link href="styles/calendar-blue.css" rel="stylesheet" type="text/css"/> | |
23 <!--[if IE]> | |
24 <style type="text/css"> | |
25 #overlay { | |
26 filter:Alpha(opacity=50, finishopacity=50, style=2); | |
27 } | |
28 </style> | |
29 <![endif]--> | |
30 <script type="text/javascript" src="scripts/gnviewer.js"></script> | |
31 <script type="text/javascript" src="scripts/prototype.js"></script> | |
32 <script type="text/javascript" src="scripts/calendar.js"></script> | |
33 <script type="text/javascript" src="scripts/calendar-de.js"></script> | |
34 <script type="text/javascript" src="scripts/calendar-setup.js"></script> | |
35 </head> | |
36 | |
37 <body id="gnviewerbody"> | |
38 <div id="overlay"></div> | |
39 <div style="width:100%;left:0;top:0;width:100%;height:100%;position:absolute"> | |
40 <div id="overlayContent"> | |
41 <p><bean:message key="gnviewer.productselection.overlay.title"/></p> | |
42 </div> | |
43 </div> | |
44 <div id="page"> | |
45 <tiles:insert attribute="header" ignore="true"/> | |
46 <tiles:insert attribute="body" ignore="true"/> | |
47 <tiles:insert attribute="footer" ignore="true"/> | |
48 </div> | |
49 </body> | |
50 </html:html> |