mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-23 22:47:57 +01:00
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||
|
<%@ taglib prefix="tiles" uri="http://struts.apache.org/tags-tiles" %>
|
||
|
<%@ include file="/jsp/init.jsp" %>
|
||
|
|
||
|
<tiles:importAttribute name="title" scope="request"/>
|
||
|
<tiles:importAttribute name="details" scope="request"/>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>
|
||
|
<spring:message code="SITE.TITLE"/>
|
||
|
-
|
||
|
<c:choose>
|
||
|
<c:when test="${requestScope.viewTitle!=null}">
|
||
|
${requestScope.viewTitle}
|
||
|
</c:when>
|
||
|
<c:otherwise>
|
||
|
<spring:message code="${requestScope.title}"/>
|
||
|
</c:otherwise>
|
||
|
</c:choose>
|
||
|
</title>
|
||
|
<meta http-equiv="Content-type" value="text/html; charset=utf-8">
|
||
|
<link rel="stylesheet" type="text/css" href="../css/wisehome.css">
|
||
|
<link rel="icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon">
|
||
|
<link rel="shortcut icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon">
|
||
|
<script type="text/javascript" src="${pageContext.request.contextPath}/js/wiseLibrary.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<jsp:include page="header.jsp"/>
|
||
|
|
||
|
<div class="pageBody">
|
||
|
|
||
|
<div class="pageBodyContent">
|
||
|
<tiles:insert name="body"/>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<jsp:include page="footer.jsp"/>
|
||
|
</body>
|
||
|
</html>
|