wisemapping-open-source/wise-webapp/src/main/webapp/jsp/template.jsp

45 lines
1.5 KiB
Plaintext
Raw Normal View History

2011-03-28 06:33:16 +02:00
<!DOCTYPE HTML>
2011-10-15 18:23:27 +02:00
<%@page pageEncoding="UTF-8" %>
2009-06-07 20:59:43 +02:00
<%@ 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>
2011-03-28 07:04:40 +02:00
<meta http-equiv="Content-type" content="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"/>
2011-10-15 18:23:27 +02:00
<script type='text/javascript'
src='https://ajax.googleapis.com/ajax/libs/mootools/1.3.2/mootools-yui-compressed.js'></script>
<script type='text/javascript' src='../js/libraries/mootools/mootools-more-1.3.2.1-yui.js'></script>
2009-06-07 20:59:43 +02:00
</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>