bookmark-pages/Resources/Private/Templates/Dashboard/Widgets/TopLikesWidget.html
2021-08-20 13:33:13 +02:00

25 lines
654 B
HTML

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<f:layout name="Widget/Widget" />
<f:section name="main">
<div class="widget-table-wrapper">
<table class="widget-table">
<f:for each="{items}" as="item">
<tr>
<td>
<p>{item.title -> f:format.crop(maxCharacters: 180)}</p>
</td>
<td>
{item.number}
</td>
</tr>
</f:for>
</table>
</div>
</f:section>
<f:section name="footer">
</f:section>
</html>