From 26bd7390f86db3f714f24643b73b0dca5bc6f661 Mon Sep 17 00:00:00 2001 From: Lars Olesen Date: Sat, 31 Jul 2021 23:52:52 +0200 Subject: [PATCH 1/3] Make it possible to disable breadcrumbs per page --- _layouts/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/single.html b/_layouts/single.html index 852c4ca9d97a..a285194af553 100644 --- a/_layouts/single.html +++ b/_layouts/single.html @@ -8,7 +8,7 @@ {% include page__hero_video.html %} {% endif %} -{% if page.url != "/" and site.breadcrumbs %} +{% if page.url != "/" and site.breadcrumbs and page.breadcrumbs != false %} {% unless paginator %} {% include breadcrumbs.html %} {% endunless %} @@ -88,4 +88,4 @@