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>
|
<h1>{headline}</h1>
|
||||||
<ul>
|
<ul>
|
||||||
<f:for each="{topics}" as="topic">
|
<f:for each="{topics}" as="topic">
|
||||||
<li>
|
<f:if condition="{topic.data.title}">
|
||||||
<a href="{f:uri.page(pageUid: 11, additionalParams: {topic: topic.data.uid})}">
|
<li>
|
||||||
{topic.data.title}
|
<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>
|
||||||
{f:if(condition: topic.data.count, then: '({topic.data.count})')}
|
</li>
|
||||||
</a>
|
</f:if>
|
||||||
</li>
|
|
||||||
</f:for>
|
</f:for>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
Loading…
Reference in a new issue