view src/main/webapp/pages/fullTextSearch2.jsp @ 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
line wrap: on
line source


<jsp:useBean id="sessionBean" class="de.mpiwg.web.jsp.SessionBean" scope="session" />

<html>

<head>
	<jsp:include page="../componentes/headContent.jsp"/>
    <link rel="stylesheet" href="index.css" />
</head>
<body>

	<jsp:include page="../componentes/template2.jsp"/>

    <div id="page">
<% if(sessionBean.getUser() != null) { %>
	    <div style="text-align:right;"><a href="fullTextSearch.jsp" target="_blank">Previous edition</a></div>
	    <div id="root" style="padding: 5px 20px;"></div>
	</div>
    <script src="index.js"></script>
<% }
   else { %>
    <label class="subTitel">Please login or create a new account above</label>
    </div>
<% } %>
<jsp:include page="../componentes/footer.jsp"/>
</body>
</html>