Enable share buttons on all _posts (default)

This commit is contained in:
Michael Rose 2016-02-23 11:19:44 -05:00
parent 39c1bbee22
commit b7b887f6e4
2 changed files with 2 additions and 1 deletions

View file

@ -99,6 +99,7 @@ defaults:
values:
layout: post
comments: true
share: true
# Plugins
gems:

View file

@ -25,7 +25,7 @@ layout: default
<hr />
<footer role="contentinfo">
{% if page.share != false %}{% include social-share.html %}{% endif %}
{% if page.share %}{% include social-share.html %}{% endif %}
{% if page.date %}
<p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %}.</p>
{% endif %}