… | |
… | |
25 |
|
25 |
|
26 | <!-- search results -->
|
26 | <!-- search results -->
|
27 | <div id="content">
|
27 | <div id="content">
|
28 | <div id="events" class="results">
|
28 | <div id="events" class="results">
|
29 |
|
29 |
|
30 | <c:forEach items="${items}" var="item">
|
30 | <c:forEach items="${docs.items}" var="item">
|
31 | <ul class="event-item">
|
31 | <ul class="event-item">
|
32 | <li class="full-link"><a href="<hst:link hippobean="${item}"/>"></a></li>
|
32 | <li class="full-link"><a href="<hst:link hippobean="${item}"/>"></a></li>
|
33 | <li class="calendar"><img src="<hst:link path="/images/mobile/bg-calendar.png"/>"/>
|
33 | <li class="calendar"><img src="<hst:link path="/images/mobile/bg-calendar.png"/>"/>
|
34 | <span class="month"><fmt:formatDate value="${item.date.time}" pattern="MMM"/></span>
|
34 | <span class="month"><fmt:formatDate value="${item.date.time}" pattern="MMM"/></span>
|
35 | <span class="day"><fmt:formatDate value="${item.date.time}" pattern="dd"/></span>
|
35 | <span class="day"><fmt:formatDate value="${item.date.time}" pattern="dd"/></span>
|
… | |
… | |
40 | <img src="${imageUrl}"/>
|
40 | <img src="${imageUrl}"/>
|
41 | </a></li>
|
41 | </a></li>
|
42 | <li class="title"><a href="<hst:link hippobean="${item}"/>">${item.title}</a></li>
|
42 | <li class="title"><a href="<hst:link hippobean="${item}"/>">${item.title}</a></li>
|
43 | </ul>
|
43 | </ul>
|
44 | </c:forEach>
|
44 | </c:forEach>
|
45 |
|
45 |
|
46 | <c:if test="${count > pageSize}">
|
46 | <c:if test="${count > pageSize}">
|
47 | <div id="show-more">
|
47 | <div id="show-more">
|
48 | <a href="?pageSize=${pageSize + 25}">
|
48 | <a href="?pageSize=${pageSize + 25}">
|
49 | <c:choose>
|
49 | <c:choose>
|
50 | <c:when test="${count - pageSize > 25}">Show 25 more...</c:when>
|
50 | <c:when test="${count - pageSize > 25}">Show 25 more...</c:when>
|