2018-05-26 20:46:55 +02:00
|
|
|
<!DOCTYPE html>
|
2020-09-05 12:29:57 +02:00
|
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
2018-05-26 20:46:55 +02:00
|
|
|
<f:layout name="Default"/>
|
|
|
|
|
|
|
|
<f:section name="main">
|
|
|
|
<h2>
|
|
|
|
<f:translate key="index.heading"/>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<table class="table">
|
|
|
|
<tbody>
|
|
|
|
<f:for each="{teas}" as="tea">
|
|
|
|
<tr>
|
|
|
|
<td scope="row">
|
|
|
|
{tea.uid}
|
|
|
|
</td>
|
|
|
|
<td>
|
2018-05-28 17:05:39 +02:00
|
|
|
<f:link.action arguments="{tea: tea}" pageUid="{settings.singleViewPageUid}">
|
|
|
|
{tea.title}
|
|
|
|
</f:link.action>
|
2018-05-26 20:46:55 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</f:for>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</f:section>
|
|
|
|
</html>
|