From 724a3135b36d828dca9834f55c6d13447bb82330 Mon Sep 17 00:00:00 2001 From: MG-5 Date: Wed, 1 Nov 2023 13:07:42 +0100 Subject: [PATCH] Turn off showing share buttons --- _config.yml | 3 +++ _layouts/event.liquid | 2 ++ _layouts/post.liquid | 2 ++ 3 files changed, 7 insertions(+) diff --git a/_config.yml b/_config.yml index 8c2c78c..cb1f38a 100644 --- a/_config.yml +++ b/_config.yml @@ -15,6 +15,9 @@ header_feature_image_responsive: true footer_text: > Powered by Jekyll with Type on Strap +# Show share_buttons +share_buttons: false + # Blog excerpt: true # Or "truncate" (first 250 characters), "false" to disable post_navigation: true diff --git a/_layouts/event.liquid b/_layouts/event.liquid index e164f1e..4415403 100644 --- a/_layouts/event.liquid +++ b/_layouts/event.liquid @@ -24,7 +24,9 @@ layout: default + {% if site.share_buttons %} {% include social/share_buttons.liquid %} + {% endif %} {% capture tag_list %}{{ page.tags | join: "|"}}{% endcapture %} diff --git a/_layouts/post.liquid b/_layouts/post.liquid index 8840aaa..03607ce 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -24,7 +24,9 @@ layout: default + {% if site.share_buttons %} {% include social/share_buttons.liquid %} + {% endif %} {% capture tag_list %}{{ page.tags | join: "|"}}{% endcapture %}