diff --git a/_includes/breadcrumb.html b/_includes/breadcrumb.html
index 9bbf2f6..5ea8871 100644
--- a/_includes/breadcrumb.html
+++ b/_includes/breadcrumb.html
@@ -1,7 +1,6 @@
{% comment %}
*
* http://stackoverflow.com/questions/9612235/what-are-some-good-ways-to-implement-breadcrumbs-on-a-jekyll-site
-* https://github.com/huonw/huonw.github.io/blob/master/_layouts/default.html#L17
*
{% endcomment %}
diff --git a/_includes/next-previous-post-in-category.html b/_includes/next-previous-post-in-category.html
index a851c06..80ca73b 100644
--- a/_includes/next-previous-post-in-category.html
+++ b/_includes/next-previous-post-in-category.html
@@ -1,7 +1,7 @@
{% comment %}
*
* This include creates a next/previous link to a post of the same category
-* using a the categories-variable in front matter.
+* using the categories-variable in front matter.
*
* Source: https://github.com/jekyll/jekyll/issues/260a#issue-495435
*
diff --git a/assets/css/styles_feeling_responsive.scss b/assets/css/styles_feeling_responsive.scss
index 2b3a568..5c0091f 100755
--- a/assets/css/styles_feeling_responsive.scss
+++ b/assets/css/styles_feeling_responsive.scss
@@ -9,12 +9,7 @@
@import "04_settings_mixins_media_queries.scss";
@import "04_settings_global.scss";
@import "05_settings_top-bar.scss";
-
@import "05_normalize.scss"; // normalize.css v3.0.2
-@import "06_typography.scss";
-@import "07_layout";
-@import "foundation-components/grid";
-@import "09_elements";
@import "foundation-components/top-bar.scss";
@import "foundation-components/accordion";
@@ -41,4 +36,9 @@
@import "foundation-components/type";
@import "foundation-components/visibility";
+@import "06_typography.scss";
+@import "07_layout";
+@import "foundation-components/grid";
+@import "09_elements";
+
@import "11_syntax-highlighting";
diff --git a/pages/changelog.md b/pages/changelog.md
index 4247138..67dd331 100644
--- a/pages/changelog.md
+++ b/pages/changelog.md
@@ -8,7 +8,7 @@ header:
permalink: "/changelog/"
---
2015-02-25 // Version 0.99.1
-: Added support for Google Analtics. Added `_include/next-previous-post-in-category.html` to generate links from one post in a category to another post in that same category. Example at the bottom of [Grid & Colors]({{ site.url }}/design/grid/#bottom). Added `noindex`-variable for search engine optimization ([read more](https://support.google.com/webmasters/answer/93710?hl=en)).
+: Added support for Google Analtics. Added `_include/next-previous-post-in-category.html` to generate links from one post in a category to another post in that same category. Example at the bottom of [Grid & Colors]({{ site.url }}/design/grid/#bottom). Added `noindex`-variable for search engine optimization ([read more](https://support.google.com/webmasters/answer/93710?hl=en)). Changed code for breadcrumb.
2015-02-19 // Version 0.99
: Yes! Now *Feeling Responsive* uses the built-in sass-support by Jekyll. Open `_sass` and dig deeper into customizing this theme using your colors, typography and so on...
diff --git a/pages/documentation.md b/pages/documentation.md
index 5f16df0..f25d3f5 100644
--- a/pages/documentation.md
+++ b/pages/documentation.md
@@ -201,8 +201,17 @@ With the Kramdown parser for Markdown you can render a table of contents for you
[Up to table of contents](#toc)
{: .text-right }
+## Breadcrumbs
+
+To turn on breadcrumbs, just use...
+
+{% highlight html %}
+breadcrumb: true
+{% endhighlight %}
+
## Includes
+{: .t60}
Includes can be very helpful to spice up your content. You can use includes in your Markdown-files with ease: Just call them with some Liquid code.
@@ -219,11 +228,19 @@ Possible parameter for the loop:
The loop looks when you use all parameters. Single parameters are possible of course.
~~~
-{% raw %}
-{% include list-posts.html entries='3' offset='1' category='design' %}
-{% endraw %}
+{% raw %}{% include list-posts.html entries='3' offset='1' category='design' %}{% endraw %}
~~~
+### next-previous-post-in-category.html
+
+This include creates a next/previous link to a post of the same category using the first categories-variable in front matter.
+
+~~~
+{% raw %}{% include next-previous-post-in-category.html %}{% endraw %}
+~~~
+
+
+
[Up to table of contents](#toc)
{: .text-right }