Skip to content

Commit

Permalink
Fix missing closing div tag around Related Posts in sidefoot (#5690)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Cranfill committed Apr 29, 2020
1 parent c0c4b7f commit 49e8e37
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
{% for block in streamfield %}
{% if 'related_posts' in block.block_type %}
<div class="block{{ ' block__flush-top' if loop.first else '' }}">
{% include_block block %}
{% include_block block %}
</div>
{% elif 'related_metadata' in block.block_type %}
<div class="block{{ ' block__flush-top' if loop.first else '' }}">
{{ related_metadata.render(block.value) }}
Expand Down

0 comments on commit 49e8e37

Please sign in to comment.