mirror of
https://github.com/werkraum-media/watchlist.git
synced 2024-11-22 16:56:10 +01:00
23 lines
756 B
HTML
23 lines
756 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
<h2>{f:translate(id: 'headline.index', extensionName: 'Watchlist')}</h2>
|
|
|
|
<f:if condition="{watchlist.empty}">
|
|
<f:then>
|
|
<p>{f:translate(id: 'text.watchlist.isEmpty', extensionName: 'Watchlist')}
|
|
</f:then>
|
|
<f:else>
|
|
<ol>
|
|
<f:for each="{watchlist.items}" as="item">
|
|
<li>
|
|
{item.title}
|
|
<f:if condition="{item.image}">
|
|
<f:image image="{item.image}" />
|
|
</f:if>
|
|
</li>
|
|
</f:for>
|
|
</ol>
|
|
</f:else>
|
|
</f:if>
|
|
</html>
|