Skip to content

Commit cb52524

Browse files
committed
update
1 parent 43c2d99 commit cb52524

26 files changed

Lines changed: 91 additions & 62 deletions

_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,19 @@ defaults:
7373
path: "" # an empty string here means all files in the project
7474
type: "pages"
7575
values:
76-
show_metadata: true # Show metadata beneath all pages
76+
show_meta: true # Show metadata beneath all pages
7777
sidebar: "" # Possible values › left, right › by default there will be no sidebar
7878
comments: false
79-
author: "mo"
79+
author: "your_author_name"
8080
-
8181
scope:
8282
path: ""
8383
type: "posts"
8484
values:
85-
show_metadata: true # Show metadata beneath all posts
85+
show_meta: true # Show metadata beneath all posts
8686
sidebar: "" # Possible values › left, right › by default there will be no sidebar
8787
comments: false
88-
author: "mo"
88+
author: "your_author_name"
8989

9090

9191

_data/authors.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Author details
2-
# http://blog.sorryapp.com/blogging-with-jekyll/2014/02/06/adding-authors-to-your-jekyll-site.html
3-
mo:
2+
#
3+
# 1. Edit information below
4+
# 2. Change author in default settings in config.yml
5+
#
6+
# Ressource › http://blog.sorryapp.com/blogging-with-jekyll/2014/02/06/adding-authors-to-your-jekyll-site.html
7+
your_author_name:
48
name: "Moritz »mo.« Sauer"
59
url: http://mo.phlow.de/

_includes/comments.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% if page.comments %}
2-
<h3 class="t60">{{ site.data.language.comments_headline }}</h3>
2+
<h3 id="comments" class="t60">{{ site.data.language.comments_headline }}</h3>
33

44
<div id="disqus_thread"></div>
55
<script type="text/javascript">

_includes/meta_information.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
</span>
99
{% endif %}
1010

11+
{% if page.date %}
1112
<time class="icon-calendar pr20" datetime="{{ page.date | date: "%Y-%m-%d" }}" itemprop="datePublished"> {{ page.date | date: "%Y-%m-%d" }}</time>
13+
{% endif %}
1214

1315
{% if page.categories %}<span class="icon-archive pr20"> {{ page.categories | join: ' · ' | upcase }}{% endif %}</span>
1416
<br>

_layouts/blog.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
format: blog-index
44
---
55
<div class="row">
6-
<div class="medium-7 columns t30">
6+
<div class="medium-8 columns t30">
77
{% include pagination.html %}
88
</div><!-- /.medium-7.columns -->
99

1010

11-
<div class="medium-5 columns t30">
11+
<div class="medium-4 columns t30">
1212
{% include sidebar.html %}
1313
</div><!-- /.medium-5.columns -->
1414
</div><!-- /.row -->

_layouts/frontpage.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,31 @@
1313
<div class="row t60">
1414
<div class="medium-4 columns">
1515
<a href="{{ site.url }}{{ page.widget-1.url }}"><img src="{{ site.urlimg }}/{{ page.widget-1.image }}" width="302" height="182" alt=""></a>
16-
<h2 class="font-size-h3">{{ page.widget-1.title }}</h2>
16+
<h2 class="font-size-h3 t10">{{ page.widget-1.title }}</h2>
1717
<p>{{ page.widget-1.text }}</p>
1818
<p><a class="button tiny radius" href="{{ site.url }}{{ page.widget-1.url }}">{{ site.data.language.more }}</a></p>
1919
</div><!-- /.medium-4.columns -->
2020

2121

2222
<div class="medium-4 columns">
2323
<a href="{{ site.url }}{{ page.widget-2.url }}"><img src="{{ site.urlimg }}/{{ page.widget-2.image }}" width="302" height="182" alt=""></a>
24-
<h2 class="font-size-h3">{{ page.widget-2.title }}</h2>
24+
<h2 class="font-size-h3 t10">{{ page.widget-2.title }}</h2>
2525
<p>{{ page.widget-2.text }}</p>
2626
<p><a class="button tiny radius" href="{{ site.url }}{{ page.widget-2.url }}">{{ site.data.language.more }}</a></p>
2727
</div><!-- /.medium-4.columns -->
2828

2929

3030
<div class="medium-4 columns">
3131
<a href="{{ site.url }}{{ page.widget-3.url }}"><img src="{{ site.urlimg }}/{{ page.widget-3.image }}" width="302" height="182" alt=""></a>
32-
<h2 class="font-size-h3">{{ page.widget-3.title }}</h2>
32+
<h2 class="font-size-h3 t10">{{ page.widget-3.title }}</h2>
3333
<p>{{ page.widget-3.text }}</p>
3434
<p><a class="button tiny radius" href="{{ site.url }}{{ page.widget-3.url }}">Download @ GitHub ›</a></p>
3535
</div><!-- /.medium-4.columns -->
3636
</div><!-- /.row -->
3737

3838

3939

40-
<div class="row t50 b20 homepage">
40+
<div class="row t30 b20 homepage">
4141
<div class="small-12 columns">
4242
{% for post in site.posts limit:1 %}
4343
{% if post.image.homepage %}

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h1>{{ page.title }}</h1>
3737
{{ content }}
3838
</span>
3939

40-
{% if page.show_metadata == true %}
40+
{% if page.show_meta == true %}
4141
{% include meta_information.html %}
4242
{% endif %}
4343

_layouts/video.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h1>{{ page.title }}</h1>
2222
{% endif %}
2323

2424
{{ content }}
25-
{% if page.show_metadata == true %}
25+
{% if page.show_meta == true %}
2626
{% include meta_information.html %}
2727
{% endif %}
2828
</div><!-- /.medium-8.columns -->

_posts/design/2014-07-09-post-left-sidebar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ image:
1717
*Feeling Responsive* shows metadata by default. The default behaviour can be changed via `config.yml`. To show metadata at the end of a page/post just add the following to front matter:
1818

1919
~~~
20-
show_metadata: true
20+
show_meta: true
2121
~~~
2222

2323
If you don't want to show metadata, it's simple again:
2424

2525
~~~
26-
show_metadata: false
26+
show_meta: false
2727
~~~
2828

2929

_posts/design/2014-07-10-page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ author: mo
2121
*Feeling Responsive* shows metadata by default. The default behaviour can be changed via `config.yml`. To show metadata at the end of a page/post just add the following to front matter:
2222

2323
~~~
24-
show_metadata: true
24+
show_meta: true
2525
~~~
2626

2727
If you don't want to show metadata, it's simple again:
2828

2929
~~~
30-
show_metadata: false
30+
show_meta: false
3131
~~~
3232

3333

0 commit comments

Comments
 (0)