Do not show underlined whitespace after link title
This commit is contained in:
parent
d9f949a465
commit
2ce9f792d6
1 changed files with 5 additions and 6 deletions
|
@ -4,12 +4,11 @@
|
|||
<h1>{headline}</h1>
|
||||
<ul>
|
||||
<f:for each="{topics}" as="topic">
|
||||
<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})')}
|
||||
</a>
|
||||
</li>
|
||||
<f:if condition="{topic.data.title}">
|
||||
<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})')}</a>
|
||||
</li>
|
||||
</f:if>
|
||||
</f:for>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
Loading…
Reference in a new issue