mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-05 20:14:30 +08:00
22 lines
831 B
Plaintext
22 lines
831 B
Plaintext
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
|
|
<%@ include file="/jsp/init.jsp" %>
|
|
|
|
<tiles:importAttribute name="title" scope="page"/>
|
|
<tiles:importAttribute name="details" scope="page"/>
|
|
|
|
<html>
|
|
<head>
|
|
<base href="${pageContext.request.contextPath}/"/>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
|
|
|
<script type="text/javascript" language="javascript" src="js/jquery-1.7.2.min.js"></script>
|
|
<script type="text/javascript" language="javascript" src="bootstrap/js/bootstrap.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"/>
|
|
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-responsive.min.css"/>
|
|
<body>
|
|
<div style="padding-top:20px">
|
|
<tiles:insertAttribute name="body"/>
|
|
</div>
|
|
</body>
|
|
</html>
|