diff --git a/_includes/nav_list b/_includes/nav_list
index a035a5bd..d25f9e94 100644
--- a/_includes/nav_list
+++ b/_includes/nav_list
@@ -1,26 +1,27 @@
-{% assign navigation = site.data.navigation[include.nav] %}
-
diff --git a/docs/_docs/10-layouts.md b/docs/_docs/10-layouts.md
index e0778988..016e3c1e 100644
--- a/docs/_docs/10-layouts.md
+++ b/docs/_docs/10-layouts.md
@@ -747,6 +747,15 @@ defaults:
nav: "docs"
```
+If you have multiple sidebar navs defined and want to include more than one on a page, the sidebar nav can also be a list.
+
+```yaml
+sidebar:
+ nav:
+ - main
+ - docs
+```
+
---
## Social sharing links
@@ -776,23 +785,23 @@ The important parts to change are:
To change the color of the button use one of the built in [utility classes]({{ "/docs/utility-classes/#buttons" | relative_url }}). 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`.
+Under the `$buttoncolors:` color map in `_sass/minimal-mistakes/_buttons.scss` simply add a name (this will be appended to `btn--`) that matches the new button class. In our case `reddit` ~> `.btn--reddit`.
```scss
-$social:
+$buttoncolors:
(facebook, $facebook-color),
(twitter, $twitter-color),
(linkedin, $linkedin-color),
-(reddit, #ff4500);
+(reddit, $reddit-color);
```
-**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/).
+**ProTip:** For bonus points you can modify the Sass variable `$reddit-color` that is set in `_variables.scss` [or use a different "brand" color](http://brandcolors.net/).
{: .notice--info}
Add the new `.btn--reddit` class to the `` element from earlier, [compile `main.css`]({{ "/docs/stylesheets/" | relative_url }}) and away you go.
```html
-{% raw %} Reddit{% endraw %}
+{% raw %} Reddit{% endraw %}
```
