2019-08-14 17:22:01 +02:00
|
|
|
<f:render partial="Event/SearchForm" arguments="{search: search}"/>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<f:for each="{events}" as="event">
|
|
|
|
<div class="col-sm-12 col-md-6 col-lg-4 col-xl-4">
|
|
|
|
<div class="menu-tile">
|
2021-09-06 15:34:23 +02:00
|
|
|
<f:if condition="{event.images.0}">
|
2019-08-14 17:22:01 +02:00
|
|
|
<f:then>
|
|
|
|
<f:link.action pageUid="{settings.showPID}" action="show" controller="Event" arguments="{event: event}">
|
2021-09-06 15:34:23 +02:00
|
|
|
<f:image image="{event.images.0}" alt="" width="480c" height="320c" class="img-fluid img-thumbnail"/>
|
2019-08-14 17:22:01 +02:00
|
|
|
</f:link.action>
|
|
|
|
</f:then>
|
|
|
|
<f:else>
|
2019-11-07 14:16:28 +01:00
|
|
|
<f:link.action pageUid="{settings.showPID}" action="show" controller="Event" arguments="{event: event}">
|
|
|
|
<img src="{settings.defaultImagePath}" alt="Dummy" width="480c" height="320c" class="img-fluid img-thumbnail"/>
|
|
|
|
</f:link.action>
|
2019-08-14 17:22:01 +02:00
|
|
|
</f:else>
|
|
|
|
</f:if>
|
|
|
|
</div>
|
|
|
|
<div class="caption">
|
|
|
|
<div class="caption-text mt-3">
|
|
|
|
{event.region.title}
|
|
|
|
<h4>{event.title}</h4>
|
|
|
|
<p>{event.teaser}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</f:for>
|
2021-09-06 15:34:23 +02:00
|
|
|
</div>
|