ds-site/Resources/Private/Partials/TopicList.html

17 lines
552 B
HTML
Raw Normal View History

2019-11-15 13:17:22 +01:00
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
<nav>
<h1>{headline}</h1>
<ul>
<f:for each="{topics}" as="topic">
2019-11-15 13:17:22 +01:00
<li>
<a href="{f:uri.page(pageUid: 11, additionalParams: {topic: topic.data.uid})}">
{topic.data.title}
{f:if(condition: topic.data.count, then: '({topic.data.count})')}
2019-11-15 13:17:22 +01:00
</a>
</li>
</f:for>
</ul>
</nav>
</html>