File tree 8 files changed +46
-25
lines changed
8 files changed +46
-25
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ plugins:
58
58
# /____/
59
59
#
60
60
paginate : 5 # Paginates all X entries
61
- paginate_path : " /feed/ page- :num" # Pagination path › Important for blog page in /feed / to work
61
+ paginate_path : " blog/ page:num" # Pagination path › Important for blog page in /blog / to work
62
62
63
63
64
64
# Theme works best with Kramdown (using the table of contents function)
Original file line number Diff line number Diff line change 8
8
url : ' http://localhost:4000'
9
9
baseurl : ' '
10
10
urlimg : ' http://localhost:4000/images/'
11
-
12
- # See › https://github.com/jekyll/jekyll-gist#disabling-noscript-support
13
- gist :
14
- noscript : false
15
-
16
- sass :
17
- # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
18
- style : :expanded
19
- line_numbers : true
20
- # trace_selectors: true
21
- # debug_info: true
22
- # FUTURE https://github.com/jekyll/jekyll-sass-converter/issues/12
23
- sourcemap : true
24
-
25
- # Disable when not in production
26
- google_analytics_tracking_id : false
Original file line number Diff line number Diff line change 22
22
{% if page.previous.url %}
23
23
< div class ="small-5 columns "> < a class ="button small radius prev " href ="{{ site.url }}{{ site.baseurl }}{{page.previous.url}} "> « {{page.previous.title}}</ a > </ div > <!-- /.small-4.columns -->
24
24
{% endif %}
25
- < div class ="small-2 columns text-center "> < a class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/feed /archive/ " title ="Blog {{ site.data.language.archive }} "> {{ site.data.language.archive }}</ a > </ div > <!-- /.small-4.columns -->
25
+ < div class ="small-2 columns text-center "> < a class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/blog /archive/ " title ="Blog {{ site.data.language.archive }} "> {{ site.data.language.archive }}</ a > </ div > <!-- /.small-4.columns -->
26
26
{% if page.next.url %}
27
27
< div class ="small-5 columns text-right "> < a class ="button small radius next " href ="{{ site.url }}{{ site.baseurl }}{{page.next.url}} "> {{page.next.title}} »</ a > </ div > <!-- /.small-4.columns -->
28
28
{% else %}
Original file line number Diff line number Diff line change @@ -27,16 +27,16 @@ <h2><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a
27
27
< nav id ="pagination ">
28
28
{% if paginator.previous_page %}
29
29
{% if paginator.previous_page == 1 %}
30
- < a rel ="prev " class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/feed / " title ="{{ site.data.language.previous_posts }} "> « {{ site.data.language.previous_posts }}</ a >
30
+ < a rel ="prev " class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/blog / " title ="{{ site.data.language.previous_posts }} "> « {{ site.data.language.previous_posts }}</ a >
31
31
{% else %}
32
- < a rel ="prev " class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/feed /page{{ paginator.previous_page }}/ " title ="{{ site.data.language.previous_posts }} "> « {{ site.data.language.previous }}</ a >
32
+ < a rel ="prev " class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/blog /page{{ paginator.previous_page }}/ " title ="{{ site.data.language.previous_posts }} "> « {{ site.data.language.previous }}</ a >
33
33
{% endif %}
34
34
{% endif %}
35
35
36
- < a class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/feed /archive/ " title ="{{ site.data.language.blog_archive }} "> {{ site.data.language.blog_archive }}</ a >
36
+ < a class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/blog /archive/ " title ="{{ site.data.language.blog_archive }} "> {{ site.data.language.blog_archive }}</ a >
37
37
38
38
{% if paginator.next_page %}
39
- < a rel ="next " class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/feed /page{{ paginator.next_page }}/ " title ="{{ site.data.language.next_posts }} "> {{ site.data.language.next }} »</ a >
39
+ < a rel ="next " class ="radius button small " href ="{{ site.url }}{{ site.baseurl }}/blog /page{{ paginator.next_page }}/ " title ="{{ site.data.language.next_posts }} "> {{ site.data.language.next }} »</ a >
40
40
{% endif %}
41
41
</ nav >
42
42
Original file line number Diff line number Diff line change 31
31
{% for post in site.posts limit:include.entries offset:include.offset %}
32
32
<li><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">{% if post.subheadline %}{{ post.subheadline }} · {% endif %}<strong>{{ post.title }}</strong></a></li>
33
33
{% endfor %}
34
- <li class="text-right"><a href="{{ site.url }}{{ site.baseurl }}/feed /archive/"><strong>{{ site.data.language.more }}</strong></a></li>
34
+ <li class="text-right"><a href="{{ site.url }}{{ site.baseurl }}/blog /archive/"><strong>{{ site.data.language.more }}</strong></a></li>
35
35
36
36
37
37
{% elsif category %}
38
38
39
39
{% for post in site.categories.[category] limit:include.entries offset:include.offset %}
40
40
<li><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">{% if post.subheadline %}{{ post.subheadline }} · {% endif %}<strong>{{ post.title }}</strong></a></li>
41
41
{% endfor %}
42
- <li class="text-right"><a href="{{ site.url }}{{ site.baseurl }}/feed /archive/"><strong>{{ site.data.language.more }}</strong></a></li>
42
+ <li class="text-right"><a href="{{ site.url }}{{ site.baseurl }}/blog /archive/"><strong>{{ site.data.language.more }}</strong></a></li>
43
43
44
44
45
45
{% elsif tag %}
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: default
3
+ title: "Blog Archive"
4
+ teaser: "Check out all blog posts in my blog archive. Click on a headline to read the teaser."
5
+ breadcrumb: true
6
+ header:
7
+ image_fullwidth: header_unsplash_8.jpg
8
+ permalink: "blog/archive/"
9
+ ---
10
+ < div id ="blog-index " class ="row ">
11
+ < div class ="small-12 columns t30 ">
12
+ < h1 > {{ page.title }}</ h1 >
13
+ {% if page.teaser %}< p class ="teaser "> {{ page.teaser }}</ p > {% endif %}
14
+
15
+ < dl class ="accordion " data-accordion >
16
+ {% assign counter = 1 %}
17
+ {% for post in site.posts limit:1000 %}
18
+ < dd class ="accordion-navigation ">
19
+ < a href ="#panel{{ counter }} "> < span class ="iconfont "> </ span > {% if post.subheadline %}{{ post.subheadline }} › {% endif %}< strong > {{ post.title }}</ strong > </ a >
20
+ < div id ="panel{{ counter }} " class ="content ">
21
+ {% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% elsif post.teaser %}{{ post.teaser | strip_html | escape }}{% endif %}
22
+ < a href ="{{ site.url }}{{ site.baseurl }}{{ post.url }} " title ="Read {{ post.title | escape_once }} "> < strong > {{ site.data.language.read_more }}</ strong > </ a > < br > < br >
23
+ </ div >
24
+ </ dd >
25
+ {% assign counter=counter | plus:1 %}
26
+ {% endfor %}
27
+ </ dl >
28
+ </ div > <!-- /.small-12.columns -->
29
+ </ div > <!-- /.row -->
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: blog
3
+ title: "Blog of Feeling Responsive"
4
+ teaser: "This is the Feeling Responsive Blog Template."
5
+ header:
6
+ image_fullwidth: "header-bus.jpg"
7
+ ---
8
+
Original file line number Diff line number Diff line change 3
3
title: "Bitcoinfo, Blog Feed"
4
4
teaser: "Check out all posts in the feed. Click on a headline to read the teaser."
5
5
breadcrumb: true
6
- permalink: "/feed /archive/"
6
+ permalink: "/blog /archive/"
7
7
---
8
8
< div id ="blog-index " class ="row ">
9
9
< div class ="small-12 columns t30 ">
You can’t perform that action at this time.
0 commit comments