First working Spring-based version
[proteocache.git] / webapp / view / fragments / header.jsp
diff --git a/webapp/view/fragments/header.jsp b/webapp/view/fragments/header.jsp
new file mode 100644 (file)
index 0000000..98c989d
--- /dev/null
@@ -0,0 +1,20 @@
+<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
+
+<head>
+       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+       <title>ProteoCache</title>
+
+       <spring:url value="/css/proteocache.css" var="css1" />
+       <spring:url value="/bootstrap/css/bootstrap.min.css" var="css2" />
+       <link rel="stylesheet" type="text/css" href="${css1}" />
+       <link rel="stylesheet" type="text/css" href="${css2}" />
+       <spring:url value="/webjars/jquery/1.9.0/jquery.js" var="jQuery" />
+       <script src="${jQuery}"></script>
+
+       <spring:url value="/webjars/jquery-ui/1.9.2/js/jquery-ui-1.9.2.custom.js" var="jQueryUi" />
+       <script src="${jQueryUi}"></script>
+
+       <spring:url value="/webjars/jquery-ui/1.9.2/css/smoothness/jquery-ui-1.9.2.custom.css" var="jQueryUiCss" />
+       <link rel="stylesheet" type="text/css" href="${jQueryUiCss}" />
+
+</head>