diff --git a/_config.yml b/_config.yml
index 7dc2669..1ca369b 100644
--- a/_config.yml
+++ b/_config.yml
@@ -48,7 +48,7 @@ author:
xing: yourname # eg. daattali
stackoverflow: yourlink # eg. "3943160/daattali"
instagram: yourname # eg. daattali
-
+
# Select which links to show in the footer
footer-links-active:
rss: false
@@ -61,6 +61,13 @@ footer-links-active:
stackoverflow: false
instagram: false
+# Select which share links to show in posts
+share-links-active:
+ twitter: true
+ facebook: true
+ google: false
+ linkedin: true
+
# How to display the link to the website in the footer
# Remove this if you don't want a link in the footer
url-pretty: "MyWebsite.com" # eg. "deanattali.com/beautiful-jekyll"
diff --git a/_includes/social-share.html b/_includes/social-share.html
new file mode 100644
index 0000000..d764066
--- /dev/null
+++ b/_includes/social-share.html
@@ -0,0 +1,44 @@
+
+
+
+ {% if site.share-links-active.twitter %}
+
+ {% endif %}
+
+
+ {% if site.share-links-active.facebook %}
+
+ Facebook
+
+ {% endif %}
+
+
+ {% if site.share-links-active.google %}
+
+ Google+
+
+ {% endif %}
+
+
+ {% if site.share-links-active.linkedin %}
+
+ LinkedIn
+
+ {% endif %}
+
+
+ {% assign any-share-links = false %}
+ {% for links in site.share-links-active %}
+ {% if links[1] == true %}
+ {% assign any-share-links = true %}
+ {% endif %}
+ {% endfor %}
+
+
+ {% if any-share-links %}
+
+ {% endif %}
+
+
diff --git a/_layouts/base.html b/_layouts/base.html
index 7cb362f..74b2ad5 100644
--- a/_layouts/base.html
+++ b/_layouts/base.html
@@ -1,6 +1,7 @@
---
common-css:
- "/css/bootstrap.min.css"
+ - "/css/bootstrap-social.css"
- "/css/main.css"
common-ext-css:
- "//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"
diff --git a/_layouts/post.html b/_layouts/post.html
index 3369bc2..6d6849c 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -10,9 +10,10 @@ layout: base
{{ content }}
+ {% include social-share.html %}
{% if page.tags.size > 0 %}
- Tags:
+ Tags:
{% if site.link-tags %}
{% for tag in page.tags %}
{{ tag }}
@@ -34,7 +35,6 @@ layout: base
{% endif %}
-
{% if page.comments %}