Testseite für das Basis-Layout implementiert
[website] / src / main / webapp / WEB-INF / templates / html-head.jsp
diff --git a/src/main/webapp/WEB-INF/templates/html-head.jsp b/src/main/webapp/WEB-INF/templates/html-head.jsp
new file mode 100644 (file)
index 0000000..1cf205c
--- /dev/null
@@ -0,0 +1,23 @@
+<%@page contentType="text/html;charset=UTF-8"%>
+<%@page pageEncoding="UTF-8"%>
+<%@page session="false" %>
+<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
+<s:url var="base" value="/" />
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<link rel="stylesheet" type="text/css" href="${base}css/base.css" />
+<style type="text/css">
+  @import '${base}css/screen.css' screen and (min-width: 750px);
+  @import '${base}css/tablet.css' screen and (min-width: 750px) and (max-width: 939px);
+  @import '${base}css/phone.css' screen and (max-width: 599px);
+  @import '${base}css/tiny.css' screen and (max-width: 399px);
+</style>
+<script src="${base}js/base.js"></script>
+<!--[if IE 8]>
+  <script src="${base}js/ie8.js"></script>
+<![endif]-->
+<!--[if IE 7]>
+  <script src="${base}js/ie7.js"></script>
+<![endif]-->
+<!--[if lt IE 7]>
+  <script src="${base}js/ie6.js"></script>
+<![endif]-->