diff options
author | tknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2008-11-25 12:41:05 +0000 |
---|---|---|
committer | tknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2008-11-25 12:41:05 +0000 |
commit | 5482db0a643ed81c88bf4de9712edaeb11089baf (patch) | |
tree | 6ebf3208b756f361c7227870d39bf410f3061a06 | |
parent | 78dac0546a77adfe8a1dc56f3fa74624b56ad559 (diff) | |
download | pdf-as-3-5482db0a643ed81c88bf4de9712edaeb11089baf.tar.gz pdf-as-3-5482db0a643ed81c88bf4de9712edaeb11089baf.tar.bz2 pdf-as-3-5482db0a643ed81c88bf4de9712edaeb11089baf.zip |
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@309 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
-rw-r--r-- | src/main/webapp/sitemesh/standalone.jsp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/webapp/sitemesh/standalone.jsp b/src/main/webapp/sitemesh/standalone.jsp new file mode 100644 index 0000000..691857f --- /dev/null +++ b/src/main/webapp/sitemesh/standalone.jsp @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" ?>
+<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="utf-8"%>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator"%>
+<%@ page import="at.knowcenter.wag.egov.egiz.web.LocalRequestHelper" %>
+
+<html:html xhtml="true">
+
+ <head>
+ <decorator:head/>
+ <link rel="stylesheet" type="text/css" href="<%=LocalRequestHelper.getLocalContextAddress(request,response)%>/css/pdfas-styles.css" />
+ </head>
+
+ <body><decorator:body/></body>
+
+</html:html>
|