events/Resources/Private/Templates/Date/List.html

20 lines
504 B
HTML
Raw Normal View History

<html
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true"
>
2019-11-07 14:16:28 +01:00
<f:layout name="Default" />
2019-11-07 14:16:28 +01:00
<f:section name="content">
<f:if condition="{settings.template} === 'table'">
<f:then>
{f:render(partial: 'Date/ListTable', arguments: _all)}
</f:then>
<f:else>
{f:render(partial: 'Date/ListDefault', arguments: _all)}
</f:else>
</f:if>
2019-11-07 14:16:28 +01:00
</f:section>
</html>