2021-09-14 15:02:16 +02:00
|
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
|
|
<div class="parking">
|
2022-03-08 09:27:18 +01:00
|
|
|
<f:if condition="{parkingFacilitiesNearBy -> f:count()} > 3">
|
|
|
|
<f:then>
|
|
|
|
<div class="row">
|
|
|
|
<f:for each="{parkingFacilitiesNearBy}" as="parkingFacility">
|
|
|
|
<div class="col-md-6">
|
|
|
|
{parkingFacility.title}
|
|
|
|
{f:render(partial: 'Address', arguments: {address: parkingFacility.address})}
|
|
|
|
</div>
|
|
|
|
</f:for>
|
|
|
|
</div>
|
|
|
|
</f:then>
|
|
|
|
<f:else>
|
|
|
|
<f:for each="{parkingFacilitiesNearBy}" as="parkingFacility">
|
|
|
|
{parkingFacility.title}
|
|
|
|
{f:render(partial: 'Address', arguments: {address: parkingFacility.address})}
|
|
|
|
</f:for>
|
|
|
|
</f:else>
|
|
|
|
</f:if>
|
2021-09-14 15:02:16 +02:00
|
|
|
</div>
|
|
|
|
</html>
|