changeset 102:6a508b605b5f

1. add new page : footer.jsp. 2. embed footer.jsp into other pages.
author Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
date Fri, 29 Sep 2017 16:03:06 +0200
parents 8ba79fb4286e
children 090035f79373
files src/main/webapp/componentes/footer.jsp src/main/webapp/pages/books.jsp src/main/webapp/pages/fullTextSearch.jsp src/main/webapp/pages/fullTextSearch2.jsp src/main/webapp/pages/search.jsp src/main/webapp/pages/topicList.jsp src/main/webapp/pages/topicPage.jsp src/main/webapp/resources/css/style.css
diffstat 8 files changed, 19 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/webapp/componentes/footer.jsp	Fri Sep 29 16:03:06 2017 +0200
@@ -0,0 +1,1 @@
+<div id="footer">LoGaRT platform is developed by Dep. III of Max Plank Institute for the History of Science. All rights reserved by MPIWG(Berlin).</div>
--- a/src/main/webapp/pages/books.jsp	Fri Sep 29 16:01:28 2017 +0200
+++ b/src/main/webapp/pages/books.jsp	Fri Sep 29 16:03:06 2017 +0200
@@ -555,6 +555,6 @@
 		<% } %>
 		</form>
 	</div>
-
+    <jsp:include page="../componentes/footer.jsp"/>
 </body>
 </html>
--- a/src/main/webapp/pages/fullTextSearch.jsp	Fri Sep 29 16:01:28 2017 +0200
+++ b/src/main/webapp/pages/fullTextSearch.jsp	Fri Sep 29 16:03:06 2017 +0200
@@ -1246,6 +1246,6 @@
 		%>
 
 	</div>
-
+    <jsp:include page="../componentes/footer.jsp"/>
 </body>
 </html>
--- a/src/main/webapp/pages/fullTextSearch2.jsp	Fri Sep 29 16:01:28 2017 +0200
+++ b/src/main/webapp/pages/fullTextSearch2.jsp	Fri Sep 29 16:03:06 2017 +0200
@@ -22,5 +22,6 @@
     <label class="subTitel">Please login or create a new account above</label>
     </div>
 <% } %>
+<jsp:include page="../componentes/footer.jsp"/>
 </body>
 </html>
--- a/src/main/webapp/pages/search.jsp	Fri Sep 29 16:01:28 2017 +0200
+++ b/src/main/webapp/pages/search.jsp	Fri Sep 29 16:03:06 2017 +0200
@@ -906,6 +906,6 @@
 		<% } %>
 
 	</div>
-
+   <jsp:include page="../componentes/footer.jsp"/>
 </body>
 </html>
--- a/src/main/webapp/pages/topicList.jsp	Fri Sep 29 16:01:28 2017 +0200
+++ b/src/main/webapp/pages/topicList.jsp	Fri Sep 29 16:03:06 2017 +0200
@@ -337,5 +337,5 @@
 		<% } %>
 		<% } %>
 	</div>
-
+    <jsp:include page="../componentes/footer.jsp"/>
 </body>
--- a/src/main/webapp/pages/topicPage.jsp	Fri Sep 29 16:01:28 2017 +0200
+++ b/src/main/webapp/pages/topicPage.jsp	Fri Sep 29 16:03:06 2017 +0200
@@ -739,5 +739,5 @@
 		<% } %>
 
 	</div>
-
+    <jsp:include page="../componentes/footer.jsp"/>
 </body>
--- a/src/main/webapp/resources/css/style.css	Fri Sep 29 16:01:28 2017 +0200
+++ b/src/main/webapp/resources/css/style.css	Fri Sep 29 16:03:06 2017 +0200
@@ -2,7 +2,7 @@
     margin: 0;
     padding: 0;
     font-family: Verdana, Arial, sans-serif;
-    background-color: #FCF2DF ;
+    background-color: #FCF2DF !important;
     font-size: 12px;
 }
 
@@ -378,3 +378,14 @@
     background-color: #fff;
     text-decoration: none;
 }
+
+#footer {
+    background-color: #fcf2df;
+    width: 100%;
+    text-align: center;
+    margin-top: 15px;
+    padding-bottom: 10px;
+    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
+    font-size: 14px;
+    color: rgb(132, 128, 128);
+}