collapsed tags into relevant pages
parent
b176d4d77e
commit
907f94e0ce
|
@ -1,5 +0,0 @@
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
||||||
<h2><spring:message code="about.title"/></h2>
|
|
||||||
<p>
|
|
||||||
<spring:message code="about.body"/>
|
|
||||||
</p>
|
|
|
@ -1,5 +0,0 @@
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
||||||
<h2><spring:message code="contact.title"/></h2>
|
|
||||||
<p>
|
|
||||||
<spring:message code="contact.body"/>
|
|
||||||
</p>
|
|
|
@ -1,8 +0,0 @@
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
||||||
<h2><spring:message code="statistics.title"/></h2>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<spring:message code="statistics.number_users" arguments='${statsSummary["userCount"]}'/>
|
|
||||||
<spring:message code="statistics.number_clients" arguments='${statsSummary["clientCount"]}'/>
|
|
||||||
<spring:message code="statistics.number_approvals" arguments='${statsSummary["approvalCount"]}'/>
|
|
||||||
</p>
|
|
|
@ -15,7 +15,10 @@
|
||||||
<!-- Main hero unit for a primary marketing message or call to action -->
|
<!-- Main hero unit for a primary marketing message or call to action -->
|
||||||
<div class="hero-unit">
|
<div class="hero-unit">
|
||||||
|
|
||||||
<o:aboutContent />
|
<h2><spring:message code="about.title"/></h2>
|
||||||
|
<p>
|
||||||
|
<spring:message code="about.body"/>
|
||||||
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,10 @@
|
||||||
<div class="span10">
|
<div class="span10">
|
||||||
<div class="hero-unit">
|
<div class="hero-unit">
|
||||||
|
|
||||||
<o:contactContent />
|
<h2><spring:message code="contact.title"/></h2>
|
||||||
|
<p>
|
||||||
|
<spring:message code="contact.body"/>
|
||||||
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,13 @@
|
||||||
<o:sidebar/>
|
<o:sidebar/>
|
||||||
<div class="span10">
|
<div class="span10">
|
||||||
<div class="hero-unit">
|
<div class="hero-unit">
|
||||||
<o:statsContent/>
|
<h2><spring:message code="statistics.title"/></h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<spring:message code="statistics.number_users" arguments='${statsSummary["userCount"]}'/>
|
||||||
|
<spring:message code="statistics.number_clients" arguments='${statsSummary["clientCount"]}'/>
|
||||||
|
<spring:message code="statistics.number_approvals" arguments='${statsSummary["approvalCount"]}'/>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue