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 %}