Simplified Theme
This commit is contained in:
parent
5f5bf5659e
commit
74c2f9a235
42 changed files with 424 additions and 426 deletions
|
@ -7,6 +7,9 @@ header:
|
|||
image_fullwidth: "header_unsplash_9.jpg"
|
||||
permalink: "/changelog/"
|
||||
---
|
||||
2015-02-17 // Version 0.97
|
||||
: Simplicity. Reduced templates. Now there is one page/post-template with two switches via front matter to turn on metadata at the end of the page/post via `show_metadata: true/false` and to add a left or right sidebar via `sidebar: left/right`. The defaults are declared in `config.yml`. I also changed the variable `description` to `teaser` because it's more logigally.
|
||||
|
||||
2015-02-12 // Version 0.96
|
||||
: Added `frontpage`-layout with three widgets-areas. The layout simplifies the process to change content on the frontpage.
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
show_metadata: false
|
||||
title: "Style your content!"
|
||||
subheadline: "Layouts of Feeling Responsive"
|
||||
header:
|
||||
|
|
|
@ -23,28 +23,18 @@ permalink: "/documentation/"
|
|||
|
||||
*Feeling Responsive* supports you with different templates for your content. These are the actual page/post formats:
|
||||
|
||||
### Post
|
||||
The [post format]({{ site.url }}/design/post/) has no sidebar, its content is centered and beneath the content the visitor gets some metadata like categories, tags, date and author if provided via data in front matter of the post.
|
||||
|
||||
use in front matter via: `layout: post`
|
||||
|
||||
|
||||
### Page
|
||||
The [page template]({{ site.url }}/design/page/) shows the content in the same way as the *post* format without listing the metadata at the end of the page.
|
||||
### Page/Post
|
||||
The [page/post format]({{ site.url }}/design/page/) has no sidebar by default, its content is centered and beneath the content the visitor gets some metadata like categories, tags, date and author if provided via data in front matter of the post.
|
||||
|
||||
use in front matter via: `layout: page`
|
||||
|
||||
|
||||
### Post with left sidebar
|
||||
This template displays a [post left sidebar]({{ site.url }}/design/post-left-sidebar/) besides the content. To customize the content of the sidebar, open `_includes/sidebar.html`.
|
||||
|
||||
use in front matter via: `layout: post-left-sidebar`
|
||||
### Page/Post with a left or right sidebar
|
||||
If you want to show the sidebar, just enter `sidebar: left` or `sidebar: right` in front matter, and *whoops, there it is*! To customize the content of the sidebar, open `_includes/sidebar.html`.
|
||||
|
||||
|
||||
### Post with right sidebar
|
||||
This template displays a [post with right sidebar]({{ site.url }}/design/post-right-sidebar/) besides the content. To customize the content of the sidebar, open `_includes/sidebar.html`.
|
||||
### Page/Post with or without metadata
|
||||
If you want to show metadata like categories, tags and date at the end of the page, just enter `show_metadata: true`. It's on by default. You can change it via `config.yml`. To turn of metadata just enter – *yes, you guessed right* – `show_metadata: false`.
|
||||
|
||||
use in front matter via: `layout: post-right-sidebar`
|
||||
|
||||
|
||||
### Page Full Width
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
show_metadata: false
|
||||
title: "Getting Started"
|
||||
subheadline: "A Step-by-Step Guide"
|
||||
description: "This step-by-step guide helps you to customize Feeling Responsive to your needs."
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
show_metadata: false
|
||||
subheadline: "Header"
|
||||
title: "Style your Header!"
|
||||
description: "These are your options to style the header of each webpage individually. <em>Feeling Responsive</em> uses <a href='http://srobbin.com/jquery-plugins/backstretch/'>Backstretch by Scott Robin</a> to expand them from left to right. The width should be 1600 pixel or higher using a ratio like 16:9 or 21:9 or 2:1."
|
||||
|
|
Reference in a new issue