diff --git a/_docs/09-layouts.md b/_docs/09-layouts.md
index e9ebb9b2..b2ef5c7d 100644
--- a/_docs/09-layouts.md
+++ b/_docs/09-layouts.md
@@ -321,9 +321,9 @@ Inside of `
` you'll find `- ` elements wrapped in Liq
To add a new link you'll need three things:
-1. A destination URL
-2. A [Font Awesome icon](http://fontawesome.io/icons/) (`fa-` class)
-3. A label for the link
+1. Destination URL
+2. [Font Awesome icon](http://fontawesome.io/icons/) (`fa-` class)
+3. Label for the link
It's up to you if you want to wrap it in a `{% raw %}{% if %} ... {% endif %}{% endraw %}`conditional and add variables to `_config.yml`. If you don't plan to change it then hard-coding the strings is perfectly acceptable.
@@ -399,4 +399,55 @@ sidebar:
**ProTip:** Custom sidebar content added to a post or page's YAML Front Matter will appear above the author profile if enabled with `author_profile: true`.
-{: .notice--info}
\ No newline at end of file
+{: .notice--info}
+
+---
+
+## Social Sharing Links
+
+The `single` layout has an option to enable social links at the bottom of posts for sharing on Twitter, Facebook, Google+, and LinkedIn. Similar to the links found in the author sidebar, the theme ships with defaults for the most common social networks.
+
+
+
+To enable these links add `share: true` to a post or page's YAML Front Matter or use a [default](https://jekyllrb.com/docs/configuration/#front-matter-defaults) in your `_config.yml` to apply more globally.
+
+If you'd like to add, remove, or change the order of these default links you can do so by editing [`_includes/social-share.html`](https://github.com/mmistakes/minimal-mistakes/blob/master/_includes/social-share.html).
+
+Let's say you wanted to replace the Google+ button with a Reddit one. Simply replace the HTML with the following:
+
+```html
+{% raw %} Reddit{% endraw %}
+```
+
+The important parts to change are:
+
+1. Share point URL *eg. `https://www.reddit.com/submit?url=`
+2. Link `title`
+3. [Font Awesome icon](http://fontawesome.io/icons/) (`fa-` class)
+4. Link label
+
+
+
+To change the color of the button use one of the built in [utility classes]({{ base_path }}/docs/utility-classes/#buttons). Or you can create a new button class to match whatever color you want.
+
+Under the `$social` color map in `assets/_scss/_buttons.scss` simply add a name (this will be appened to `btn--`) that matches the new button class. In our case `reddit` ~> `.btn--reddit`.
+
+```scss
+$social:
+(facebook, $facebook-color),
+(twitter, $twitter-color),
+(google-plus, $google-plus-color),
+(linkedin, $linkedin-color);
+(reddit, #ff4500;)
+```
+
+**ProTip:** For bonus points you can add it as a Sass `$variable` that you set in `_variables.scss` like the other ["brand" colors](http://brandcolors.net/).
+{: .notice--info}
+
+Add the new `.btn--reddit` class to the `` element from earlier, [compile `main.css`]({{ base_path }}/docs/stylesheets/) and away you go.
+
+```html
+{% raw %} Reddit{% endraw %}
+```
+
+
\ No newline at end of file
diff --git a/_docs/10-posts.md b/_docs/10-posts.md
index 39472de0..0f65344b 100644
--- a/_docs/10-posts.md
+++ b/_docs/10-posts.md
@@ -2,7 +2,7 @@
title: "Working with Posts"
permalink: /docs/posts/
excerpt: "Suggestions and Front Matter defaults for working with posts."
-modified: 2016-04-13T15:54:02-04:00
+modified: 2016-06-16
---
{% include base_path %}
@@ -26,7 +26,7 @@ defaults:
related: true
```
-Adding the above to `_config.yml` will assign the `single` layout and enable: *author profile*, *reading time*, *comments*, *social sharing links*, and *related posts*, for all posts.
+Adding the above to `_config.yml` will assign the `single` layout and enable: *author profile*, *reading time*, *comments*, [*social sharing links*]({{ base_path }}/docs/layouts/#social-sharing-links), and *related posts*, for all posts.
**ProTip:** Remember to write unique `excerpt` descriptions for each post for improved SEO and archive listings.
{: .notice--info}
\ No newline at end of file
diff --git a/images/mm-social-share-links-default.png b/images/mm-social-share-links-default.png
new file mode 100644
index 00000000..75885e35
Binary files /dev/null and b/images/mm-social-share-links-default.png differ
diff --git a/images/mm-social-share-links-reddit-color.png b/images/mm-social-share-links-reddit-color.png
new file mode 100644
index 00000000..2b6a420c
Binary files /dev/null and b/images/mm-social-share-links-reddit-color.png differ
diff --git a/images/mm-social-share-links-reddit-gs.png b/images/mm-social-share-links-reddit-gs.png
new file mode 100644
index 00000000..5b6e883b
Binary files /dev/null and b/images/mm-social-share-links-reddit-gs.png differ