Skip to content

Commit e6faef0

Browse files
lsolesenchukycheese
authored andcommittedSep 18, 2023
Make it possible to enable breadcrumbs per page (mmistakes#3096)
* Make it possible to disable breadcrumbs per page * Update single.html * Update single.html
1 parent edb6826 commit e6faef0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎_layouts/single.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{% include page__hero_video.html %}
99
{% endif %}
1010

11-
{% if page.url != "/" and site.breadcrumbs %}
11+
{% if page.url != "/" and site.breadcrumbs or page.breadcrumbs != false %}
1212
{% unless paginator %}
1313
{% include breadcrumbs.html %}
1414
{% endunless %}
@@ -88,4 +88,4 @@ <h2 class="page__related-title">{{ site.data.ui-text[site.locale].related_label
8888
</div>
8989
</div>
9090
{% endif %}
91-
</div>
91+
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.