1 |
<#include "../../../htmlTags.ftl"> |
2 |
<#if info??> |
3 |
<div class="${info.cssClass}"> |
4 |
<h2>${info.title}</h2> |
5 |
<#list result.hippoBeans as item> |
6 |
<@hst.link var="link" hippobean=item/> |
7 |
<article class="well well-large" style="background-color:${info.bgColor};"> |
8 |
<@hst.cmseditlink hippobean=item/> |
9 |
<h3><a href="${link}">${item.title}</a></h3> |
10 |
<#if item.date.time??> |
11 |
<p class="badge badge-info"> |
12 |
<@fmt.formatDate value=item.date.time type="both" dateStyle="medium" timeStyle="short"/> |
13 |
</p> |
14 |
</#if> |
15 |
</article> |
16 |
</#list> |
17 |
</div> |
18 |
|
19 |
<#else> |
20 |
<@hst.element var="headTitle" name="title"> |
21 |
<@fmt.message key="page.not.found"/> |
22 |
</@hst.element> |
23 |
<@hst.headContribution keyHint="headTitle" element="${headTitle}"/> |
24 |
|
25 |
<h2><@fmt.message key="page.not.found"/></h2> |
26 |
</#if> |