Skip to content

Commit

Permalink
[BUGFIX] Correct position of content on tag view
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Nov 18, 2020
1 parent 97513a6 commit 65af1b7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Resources/Private/Templates/Post/ListPostsByTag.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,18 @@ <h1 class="blogarchiveheader__title">
<f:render partial="List" arguments="{_all}" />
<f:if condition="{settings.tagUid} || {tag.content}">
<footer class="blogarchivefooter blogarchivefooter--tag">
<f:if condition="{tag.content}">
<f:cObject typoscriptObjectPath="lib.blog.contentElementRendering">{tag.contentElementUidList}</f:cObject>
</f:if>
<f:if condition="{settings.tagUid}">
<div class="blogarchivefooter__backlink">
<f:link.page pageUid="{settings.tagUid}">
<f:translate key="list.backlink.tags" />
</f:link.page>
</div>
</f:if>
<f:if condition="{tag.content}">
<div class="blogarchivefooter__content">
<f:cObject typoscriptObjectPath="lib.blog.contentElementRendering">{tag.contentElementUidList}</f:cObject>
</div>
</f:if>
</footer>
</f:if>
</f:then>
Expand Down

0 comments on commit 65af1b7

Please sign in to comment.