diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-01-09 12:52:06 +0100 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-01-09 12:52:06 +0100 |
commit | 11c4bfac46f66ab3ba24b6354a6a372da40c0b1f (patch) | |
tree | c1e8f6f9b11eb8d939fefb08ef35ece09eab51a5 /pdf-as-web/src/main/webapp/WEB-INF/decorators | |
parent | cec0065b747d30c6a0a17d18f2c7c8962a9102ed (diff) | |
download | pdf-as-4-11c4bfac46f66ab3ba24b6354a6a372da40c0b1f.tar.gz pdf-as-4-11c4bfac46f66ab3ba24b6354a6a372da40c0b1f.tar.bz2 pdf-as-4-11c4bfac46f66ab3ba24b6354a6a372da40c0b1f.zip |
PDF-AS web Developments
Diffstat (limited to 'pdf-as-web/src/main/webapp/WEB-INF/decorators')
-rw-r--r-- | pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp b/pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp new file mode 100644 index 00000000..1179d48c --- /dev/null +++ b/pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp @@ -0,0 +1,41 @@ +<!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 contentType="text/html; charset=UTF-8"%> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> +<head> + <meta charset="utf-8"/> + <meta http-equiv="X-UA-Compatible" content="IE=edge"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + <meta name="description" content="PDF-Signatur"/> + <meta name="author" content="EGIZ"/> + <link rel="shortcut icon" href="assets/ico/favicon.png"/> + + <title><decorator:title></decorator:title></title> + <link href="assets/css/bootstrap.css" rel="stylesheet"/> + + <link href="assets/css/pdfas.css" rel="stylesheet"/> + <decorator:head></decorator:head> +</head> + +<body> + <div class="container"> + <div class="header"> + <h3 class="text-muted">PDF-Signatur</h3> + </div> + + <div class="row marketing"> + <div class="col-lg-12"> + <decorator:body></decorator:body> + </div> + </div> + + <div class="footer"> + <p>© EGIZ 2014</p> + </div> + + </div> + <!-- /container --> +</body> +</html>
\ No newline at end of file |