mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 11:36:12 +02:00
tea/Resources/Private/Templates/Tea/Index.html
Łukasz Uznański d4ec80de29
[FEATURE] Add frontend linting (#120)
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
Co-authored-by: Oliver Klee <typo3-coding@oliverklee.de>
2020-10-31 15:04:44 +01:00

33 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<f:layout name="Default"/>
<f:section name="main">
<h2>
<f:translate key="index.heading"/>
</h2>
<table class="table">
<thead>
<tr>
<th><f:translate key="tx_tea_domain_model_product_tea.uid"/></th>
<th><f:translate key="tx_tea_domain_model_product_tea.title"/></th>
</tr>
</thead>
<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>