mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 07:56:14 +01:00
27 lines
861 B
HTML
27 lines
861 B
HTML
<!DOCTYPE html>
|
|
<html xmlns:f="https://xsd.helhum.io/ns/typo3/cms-fluid/master/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<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>
|
|
<f:link.action arguments="{tea: tea}" pageUid="{settings.singleViewPageUid}">
|
|
{tea.title}
|
|
</f:link.action>
|
|
</td>
|
|
</tr>
|
|
</f:for>
|
|
</tbody>
|
|
</table>
|
|
</f:section>
|
|
</html>
|