Skip to content

Commit b1e15f5

Browse files
committed
bugfixes
1 parent 326569f commit b1e15f5

5 files changed

Lines changed: 27 additions & 11 deletions

File tree

_includes/breadcrumb.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{% comment %}
22
*
33
* http://stackoverflow.com/questions/9612235/what-are-some-good-ways-to-implement-breadcrumbs-on-a-jekyll-site
4-
* https://github.com/huonw/huonw.github.io/blob/master/_layouts/default.html#L17
54
*
65
{% endcomment %}
76

_includes/next-previous-post-in-category.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% comment %}
22
*
33
* This include creates a next/previous link to a post of the same category
4-
* using a the categories-variable in front matter.
4+
* using the categories-variable in front matter.
55
*
66
* Source: https://github.com/jekyll/jekyll/issues/260a#issue-495435
77
*

assets/css/styles_feeling_responsive.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@
99
@import "04_settings_mixins_media_queries.scss";
1010
@import "04_settings_global.scss";
1111
@import "05_settings_top-bar.scss";
12-
1312
@import "05_normalize.scss"; // normalize.css v3.0.2
14-
@import "06_typography.scss";
15-
@import "07_layout";
16-
@import "foundation-components/grid";
17-
@import "09_elements";
1813

1914
@import "foundation-components/top-bar.scss";
2015
@import "foundation-components/accordion";
@@ -41,4 +36,9 @@
4136
@import "foundation-components/type";
4237
@import "foundation-components/visibility";
4338

39+
@import "06_typography.scss";
40+
@import "07_layout";
41+
@import "foundation-components/grid";
42+
@import "09_elements";
43+
4444
@import "11_syntax-highlighting";

pages/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ header:
88
permalink: "/changelog/"
99
---
1010
2015-02-25 // Version 0.99.1
11-
: 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)).
11+
: 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.
1212

1313
2015-02-19 // Version 0.99
1414
: 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...

pages/documentation.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,17 @@ With the Kramdown parser for Markdown you can render a table of contents for you
201201
<small markdown="1">[Up to table of contents](#toc)</small>
202202
{: .text-right }
203203
204+
## Breadcrumbs
205+
206+
To turn on breadcrumbs, just use...
207+
208+
{% highlight html %}
209+
breadcrumb: true
210+
{% endhighlight %}
211+
204212
205213
## Includes
214+
{: .t60}
206215
207216
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.
208217
@@ -219,11 +228,19 @@ Possible parameter for the loop:
219228
The loop looks when you use all parameters. Single parameters are possible of course.
220229
221230
~~~
222-
{% raw %}
223-
{% include list-posts.html entries='3' offset='1' category='design' %}
224-
{% endraw %}
231+
{% raw %}{% include list-posts.html entries='3' offset='1' category='design' %}{% endraw %}
225232
~~~
226233
234+
### next-previous-post-in-category.html
235+
236+
This include creates a next/previous link to a post of the same category using the first categories-variable in front matter.
237+
238+
~~~
239+
{% raw %}{% include next-previous-post-in-category.html %}{% endraw %}
240+
~~~
241+
242+
243+
227244
228245
<small markdown="1">[Up to table of contents](#toc)</small>
229246
{: .text-right }

0 commit comments

Comments
 (0)