2012-06-30 07:26:21 +02:00
|
|
|
<%@page pageEncoding="UTF-8" %>
|
|
|
|
<%@include file="/jsp/init.jsp" %>
|
|
|
|
|
2012-02-12 06:55:42 +01:00
|
|
|
<!DOCTYPE HTML>
|
2012-06-20 18:28:45 +02:00
|
|
|
|
2012-06-16 19:32:26 +02:00
|
|
|
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
|
2012-02-12 06:55:42 +01:00
|
|
|
<tiles:importAttribute name="title" scope="request"/>
|
|
|
|
<tiles:importAttribute name="details" scope="request"/>
|
2012-09-13 04:29:57 +02:00
|
|
|
<tiles:importAttribute name="removeSignin" scope="request" ignore="true"/>
|
2012-06-30 07:26:21 +02:00
|
|
|
|
2012-02-12 06:55:42 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2012-11-04 22:17:32 +01:00
|
|
|
<base href="${requestScope['site.baseurl']}/">
|
2012-02-12 06:55:42 +01:00
|
|
|
<title>
|
2012-06-30 07:26:21 +02:00
|
|
|
<spring:message code="SITE.TITLE"/>-
|
2012-02-12 06:55:42 +01:00
|
|
|
<c:choose>
|
|
|
|
<c:when test="${requestScope.viewTitle!=null}">
|
|
|
|
${requestScope.viewTitle}
|
|
|
|
</c:when>
|
|
|
|
<c:otherwise>
|
|
|
|
<spring:message code="${requestScope.title}"/>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:choose>
|
|
|
|
</title>
|
2012-04-14 23:46:07 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/pageTemplate.css"/>
|
2012-05-19 06:19:55 +02:00
|
|
|
|
2012-06-25 01:03:25 +02:00
|
|
|
<link rel="icon" href="images/favicon.ico" type="image/x-icon"/>
|
|
|
|
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"/>
|
2012-05-19 06:19:55 +02:00
|
|
|
|
|
|
|
<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>
|
2012-06-06 05:48:46 +02:00
|
|
|
<script src="js/less.js" type="text/javascript"></script>
|
2012-02-12 06:55:42 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2012-09-16 07:26:56 +02:00
|
|
|
<div id="pageContainer">
|
|
|
|
<jsp:include page="header.jsp">
|
|
|
|
<jsp:param name="removeSignin" value="${requestScope.removeSignin}"/>
|
|
|
|
</jsp:include>
|
|
|
|
|
|
|
|
<div class="bodyContainer">
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div class="span2"></div>
|
|
|
|
<div class="pageBodyContent span8">
|
2012-11-20 01:49:56 +01:00
|
|
|
<tiles:insertAttribute name="body"/>
|
|
|
|
</div>
|
2012-11-20 04:17:33 +01:00
|
|
|
<c:if test="${requestScope['google.ads.enabled']}">
|
|
|
|
<div class="row" style="text-align: center;margin: 5px">
|
|
|
|
<script type="text/javascript"><!--
|
|
|
|
google_ad_client = "ca-pub-7564778578019285";
|
|
|
|
/* WiseMapping Login */
|
|
|
|
google_ad_slot = "2192653431";
|
|
|
|
google_ad_width = 728;
|
|
|
|
google_ad_height = 90;
|
|
|
|
//-->
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript"
|
|
|
|
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</c:if>
|
2012-09-16 07:26:56 +02:00
|
|
|
</div>
|
2012-02-12 06:55:42 +01:00
|
|
|
</div>
|
|
|
|
|
2012-09-16 07:26:56 +02:00
|
|
|
<jsp:include page="footer.jsp"/>
|
|
|
|
</div>
|
2012-02-12 06:55:42 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
2012-09-13 04:29:57 +02:00
|
|
|
|