2012-06-30 02:26:21 -03:00
|
|
|
<%@page pageEncoding="UTF-8" %>
|
|
|
|
<%@include file="/jsp/init.jsp" %>
|
2012-04-05 14:18:13 -03:00
|
|
|
|
2012-08-15 21:28:51 -03:00
|
|
|
<%--@elvariable id="mindmap" type="com.wisemapping.model.Mindmap"--%>
|
2012-04-05 14:18:13 -03:00
|
|
|
|
2012-06-30 02:26:21 -03:00
|
|
|
<!DOCTYPE HTML>
|
2011-10-18 09:29:29 -03:00
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2021-12-25 22:55:22 -08:00
|
|
|
<base href="${requestScope['site.baseurl']}/static/mindplot/">
|
2012-04-05 14:18:13 -03:00
|
|
|
<title><spring:message code="SITE.TITLE"/> - ${mindmap.title} </title>
|
2021-12-25 22:55:22 -08:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title><spring:message code="SITE.TITLE"/> - <c:out value="${mindmap.title}"/></title>
|
|
|
|
<link rel="stylesheet/less" type="text/css" href="../../css/embedded.less"/>
|
|
|
|
<script type='text/javascript' src="../../js/less.js"/></script>
|
|
|
|
<link rel="icon" href="../../images/favicon.ico" type="image/x-icon"/>
|
|
|
|
<link rel="shortcut icon" href="../../images/favicon.ico" type="image/x-icon"/>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var mapId = '${mindmap.id}';
|
|
|
|
var memoryPersistence = true;
|
|
|
|
var readOnly = true;
|
|
|
|
var userOptions = ${mindmap.properties};
|
|
|
|
var locale = '${locale}';
|
|
|
|
var isAuth = ${principal != null};
|
|
|
|
</script>
|
|
|
|
<%@ include file="/jsp/googleAnalytics.jsf" %>
|
2009-06-07 18:59:43 +00:00
|
|
|
</head>
|
2012-04-05 14:18:13 -03:00
|
|
|
<body>
|
2011-10-18 09:29:29 -03:00
|
|
|
|
2012-04-05 14:18:13 -03:00
|
|
|
<div id="mapContainer">
|
|
|
|
<div id="mindplot"></div>
|
|
|
|
<div id="printLogo"></div>
|
|
|
|
|
|
|
|
<div id="embFooter">
|
2012-09-01 14:30:32 -03:00
|
|
|
<a href="${requestScope['site.homepage']}" target="new">
|
2012-04-05 14:18:13 -03:00
|
|
|
<div id="footerLogo"></div>
|
|
|
|
</a>
|
2011-10-18 09:29:29 -03:00
|
|
|
|
2012-04-05 14:18:13 -03:00
|
|
|
<div id="zoomOut" class="button"></div>
|
2012-07-15 23:40:13 -03:00
|
|
|
<div id="zoomIn" class="button"></div>
|
2012-04-05 14:18:13 -03:00
|
|
|
|
|
|
|
<div id="mapDetails">
|
2012-08-29 19:42:24 -03:00
|
|
|
<span class="title"><spring:message code="CREATOR"/>:</span><span><c:out value="${mindmap.creator.fullName}"/></span>
|
|
|
|
<span class="title"><spring:message code="DESCRIPTION"/>:</span><span><c:out value="${mindmap.title}"/></span>
|
2011-10-18 09:29:29 -03:00
|
|
|
</div>
|
2009-06-07 18:59:43 +00:00
|
|
|
</div>
|
2011-10-18 09:29:29 -03:00
|
|
|
</div>
|
2021-12-25 22:55:22 -08:00
|
|
|
<script src="loader.js"></script>
|
2009-06-07 18:59:43 +00:00
|
|
|
</body>
|
2011-10-18 09:29:29 -03:00
|
|
|
</html>
|