Skip to content

Commit

Permalink
Fix blog entry title display if a header image is used
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-Crow committed Nov 21, 2024
1 parent a3e93e5 commit 772adbb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion blog/templates/blog/blog_entry_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@
<div class="fr-grid-row fr-grid-row--gutters">
<div class="fr-col-12">
{% include "content_manager/blocks/breadcrumbs.html" %}
<h1 class="fr-display--sm">{{ page.title }}</h1>
{% if not page.header_with_title %}
<h1>
{{ page.title }}
{% include "content_manager/blocks/page_visibility.html" %}
</h1>
{% endif %}
</div>
</div>
<p>
Expand Down

0 comments on commit 772adbb

Please sign in to comment.