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

83 lines
3.0 KiB
Plaintext
Raw Normal View History

2012-06-30 07:26:21 +02:00
<%@page pageEncoding="UTF-8" %>
<%@include file="/jsp/init.jsp" %>
<!DOCTYPE HTML>
2012-06-20 18:28:45 +02:00
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
<tiles:importAttribute name="title" scope="request"/>
<tiles:importAttribute name="details" scope="request"/>
<tiles:importAttribute name="removeSignin" scope="request" ignore="true"/>
2012-06-30 07:26:21 +02:00
<html>
<head>
<base href="${requestScope['site.baseurl']}/">
<title>
2012-06-30 07:26:21 +02:00
<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>
<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>
</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:11:06 +01:00
<div class="row" style="text-align: center">
<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>
2012-09-16 07:26:56 +02:00
</div>
2012-11-20 04:11:06 +01:00
<%--<div class="span1" style="padding-top:0px">--%>
<%--<c:if test="${requestScope['google.ads.enabled']}">--%>
<%--<script type="text/javascript"><!----%>
<%--google_ad_client = "ca-pub-7564778578019285";--%>
<%--/* WiseMapping Page Template */--%>
<%--google_ad_slot = "2051548516";--%>
<%--google_ad_width = 120;--%>
<%--google_ad_height = 600;--%>
<%--//-->--%>
<%--</script>--%>
<%--<script type="text/javascript"--%>
<%--src="http://pagead2.googlesyndication.com/pagead/show_ads.js">--%>
<%--</script>--%>
<%--</c:if>--%>
<%--</div>--%>
2012-09-16 07:26:56 +02:00
</div>
</div>
2012-09-16 07:26:56 +02:00
<jsp:include page="footer.jsp"/>
</div>
</body>
</html>