update
This commit is contained in:
parent
43c2d9925b
commit
cb52524885
26 changed files with 91 additions and 62 deletions
|
@ -73,19 +73,19 @@ defaults:
|
|||
path: "" # an empty string here means all files in the project
|
||||
type: "pages"
|
||||
values:
|
||||
show_metadata: true # Show metadata beneath all pages
|
||||
show_meta: true # Show metadata beneath all pages
|
||||
sidebar: "" # Possible values › left, right › by default there will be no sidebar
|
||||
comments: false
|
||||
author: "mo"
|
||||
author: "your_author_name"
|
||||
-
|
||||
scope:
|
||||
path: ""
|
||||
type: "posts"
|
||||
values:
|
||||
show_metadata: true # Show metadata beneath all posts
|
||||
show_meta: true # Show metadata beneath all posts
|
||||
sidebar: "" # Possible values › left, right › by default there will be no sidebar
|
||||
comments: false
|
||||
author: "mo"
|
||||
author: "your_author_name"
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Author details
|
||||
# http://blog.sorryapp.com/blogging-with-jekyll/2014/02/06/adding-authors-to-your-jekyll-site.html
|
||||
mo:
|
||||
#
|
||||
# 1. Edit information below
|
||||
# 2. Change author in default settings in config.yml
|
||||
#
|
||||
# Ressource › http://blog.sorryapp.com/blogging-with-jekyll/2014/02/06/adding-authors-to-your-jekyll-site.html
|
||||
your_author_name:
|
||||
name: "Moritz »mo.« Sauer"
|
||||
url: http://mo.phlow.de/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if page.comments %}
|
||||
<h3 class="t60">{{ site.data.language.comments_headline }}</h3>
|
||||
<h3 id="comments" class="t60">{{ site.data.language.comments_headline }}</h3>
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
</span>
|
||||
{% endif %}
|
||||
|
||||
{% if page.date %}
|
||||
<time class="icon-calendar pr20" datetime="{{ page.date | date: "%Y-%m-%d" }}" itemprop="datePublished"> {{ page.date | date: "%Y-%m-%d" }}</time>
|
||||
{% endif %}
|
||||
|
||||
{% if page.categories %}<span class="icon-archive pr20"> {{ page.categories | join: ' · ' | upcase }}{% endif %}</span>
|
||||
<br>
|
||||
|
|
|
@ -3,12 +3,12 @@ layout: default
|
|||
format: blog-index
|
||||
---
|
||||
<div class="row">
|
||||
<div class="medium-7 columns t30">
|
||||
<div class="medium-8 columns t30">
|
||||
{% include pagination.html %}
|
||||
</div><!-- /.medium-7.columns -->
|
||||
|
||||
|
||||
<div class="medium-5 columns t30">
|
||||
<div class="medium-4 columns t30">
|
||||
{% include sidebar.html %}
|
||||
</div><!-- /.medium-5.columns -->
|
||||
</div><!-- /.row -->
|
|
@ -13,7 +13,7 @@ format: blog-index
|
|||
<div class="row t60">
|
||||
<div class="medium-4 columns">
|
||||
<a href="{{ site.url }}{{ page.widget-1.url }}"><img src="{{ site.urlimg }}/{{ page.widget-1.image }}" width="302" height="182" alt=""></a>
|
||||
<h2 class="font-size-h3">{{ page.widget-1.title }}</h2>
|
||||
<h2 class="font-size-h3 t10">{{ page.widget-1.title }}</h2>
|
||||
<p>{{ page.widget-1.text }}</p>
|
||||
<p><a class="button tiny radius" href="{{ site.url }}{{ page.widget-1.url }}">{{ site.data.language.more }}</a></p>
|
||||
</div><!-- /.medium-4.columns -->
|
||||
|
@ -21,7 +21,7 @@ format: blog-index
|
|||
|
||||
<div class="medium-4 columns">
|
||||
<a href="{{ site.url }}{{ page.widget-2.url }}"><img src="{{ site.urlimg }}/{{ page.widget-2.image }}" width="302" height="182" alt=""></a>
|
||||
<h2 class="font-size-h3">{{ page.widget-2.title }}</h2>
|
||||
<h2 class="font-size-h3 t10">{{ page.widget-2.title }}</h2>
|
||||
<p>{{ page.widget-2.text }}</p>
|
||||
<p><a class="button tiny radius" href="{{ site.url }}{{ page.widget-2.url }}">{{ site.data.language.more }}</a></p>
|
||||
</div><!-- /.medium-4.columns -->
|
||||
|
@ -29,7 +29,7 @@ format: blog-index
|
|||
|
||||
<div class="medium-4 columns">
|
||||
<a href="{{ site.url }}{{ page.widget-3.url }}"><img src="{{ site.urlimg }}/{{ page.widget-3.image }}" width="302" height="182" alt=""></a>
|
||||
<h2 class="font-size-h3">{{ page.widget-3.title }}</h2>
|
||||
<h2 class="font-size-h3 t10">{{ page.widget-3.title }}</h2>
|
||||
<p>{{ page.widget-3.text }}</p>
|
||||
<p><a class="button tiny radius" href="{{ site.url }}{{ page.widget-3.url }}">Download @ GitHub ›</a></p>
|
||||
</div><!-- /.medium-4.columns -->
|
||||
|
@ -37,7 +37,7 @@ format: blog-index
|
|||
|
||||
|
||||
|
||||
<div class="row t50 b20 homepage">
|
||||
<div class="row t30 b20 homepage">
|
||||
<div class="small-12 columns">
|
||||
{% for post in site.posts limit:1 %}
|
||||
{% if post.image.homepage %}
|
||||
|
|
|
@ -37,7 +37,7 @@ format: post
|
|||
{{ content }}
|
||||
</span>
|
||||
|
||||
{% if page.show_metadata == true %}
|
||||
{% if page.show_meta == true %}
|
||||
{% include meta_information.html %}
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ format: video
|
|||
{% endif %}
|
||||
|
||||
{{ content }}
|
||||
{% if page.show_metadata == true %}
|
||||
{% if page.show_meta == true %}
|
||||
{% include meta_information.html %}
|
||||
{% endif %}
|
||||
</div><!-- /.medium-8.columns -->
|
||||
|
|
|
@ -17,13 +17,13 @@ image:
|
|||
*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:
|
||||
|
||||
~~~
|
||||
show_metadata: true
|
||||
show_meta: true
|
||||
~~~
|
||||
|
||||
If you don't want to show metadata, it's simple again:
|
||||
|
||||
~~~
|
||||
show_metadata: false
|
||||
show_meta: false
|
||||
~~~
|
||||
|
||||
|
||||
|
|
|
@ -21,13 +21,13 @@ author: mo
|
|||
*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:
|
||||
|
||||
~~~
|
||||
show_metadata: true
|
||||
show_meta: true
|
||||
~~~
|
||||
|
||||
If you don't want to show metadata, it's simple again:
|
||||
|
||||
~~~
|
||||
show_metadata: false
|
||||
show_meta: false
|
||||
~~~
|
||||
|
||||
|
||||
|
|
|
@ -18,13 +18,13 @@ image:
|
|||
*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:
|
||||
|
||||
~~~
|
||||
show_metadata: true
|
||||
show_meta: true
|
||||
~~~
|
||||
|
||||
If you don't want to show metadata, it's simple again:
|
||||
|
||||
~~~
|
||||
show_metadata: false
|
||||
show_meta: false
|
||||
~~~
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: video
|
||||
show_metadata: false
|
||||
show_meta: false
|
||||
title: "Video Template"
|
||||
subheadline: "Templates"
|
||||
teaser: "If you want to show videos in a large manner, the video template is the right choice."
|
||||
|
|
|
@ -13,7 +13,7 @@ image:
|
|||
categories:
|
||||
- design
|
||||
comments: true
|
||||
show_metadata: false
|
||||
show_meta: false
|
||||
---
|
||||
If you want to use Disqus-Comments with *Feeling Responsive*, just open `config.yml` and add your `disqus_shortname`. [More on how to use Disqus ›](https://disqus.com/websites/)
|
||||
|
||||
|
|
|
@ -7773,71 +7773,86 @@ footer li {
|
|||
/* CSS-Classes to add margin at the top or bottom
|
||||
------------------------------------------------------------------- */
|
||||
/* line 226, ../scss/_5_layout_theme-fr.scss */
|
||||
.t10 {
|
||||
margin-top: 10px !important;
|
||||
}
|
||||
|
||||
/* line 227, ../scss/_5_layout_theme-fr.scss */
|
||||
.t15 {
|
||||
margin-top: 15px !important;
|
||||
}
|
||||
|
||||
/* line 227, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 228, ../scss/_5_layout_theme-fr.scss */
|
||||
.t20 {
|
||||
margin-top: 20px !important;
|
||||
}
|
||||
|
||||
/* line 228, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 229, ../scss/_5_layout_theme-fr.scss */
|
||||
.t30 {
|
||||
margin-top: 30px !important;
|
||||
}
|
||||
|
||||
/* line 229, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 230, ../scss/_5_layout_theme-fr.scss */
|
||||
.t50 {
|
||||
margin-top: 50px !important;
|
||||
}
|
||||
|
||||
/* line 230, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 231, ../scss/_5_layout_theme-fr.scss */
|
||||
.t60 {
|
||||
margin-top: 60px !important;
|
||||
}
|
||||
|
||||
/* line 231, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 232, ../scss/_5_layout_theme-fr.scss */
|
||||
.t70 {
|
||||
margin-top: 70px !important;
|
||||
}
|
||||
|
||||
/* line 233, ../scss/_5_layout_theme-fr.scss */
|
||||
.t80 {
|
||||
margin-top: 80px !important;
|
||||
}
|
||||
|
||||
/* line 234, ../scss/_5_layout_theme-fr.scss */
|
||||
.t90 {
|
||||
margin-top: 90px !important;
|
||||
}
|
||||
|
||||
/* line 233, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 236, ../scss/_5_layout_theme-fr.scss */
|
||||
.b15 {
|
||||
margin-bottom: 15px !important;
|
||||
}
|
||||
|
||||
/* line 234, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 237, ../scss/_5_layout_theme-fr.scss */
|
||||
.b20 {
|
||||
margin-bottom: 20px !important;
|
||||
}
|
||||
|
||||
/* line 235, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 238, ../scss/_5_layout_theme-fr.scss */
|
||||
.b30 {
|
||||
margin-bottom: 30px !important;
|
||||
}
|
||||
|
||||
/* line 236, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 239, ../scss/_5_layout_theme-fr.scss */
|
||||
.b60 {
|
||||
margin-bottom: 60px !important;
|
||||
}
|
||||
|
||||
/* line 238, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 241, ../scss/_5_layout_theme-fr.scss */
|
||||
.pl20 {
|
||||
padding-left: 20px !important;
|
||||
}
|
||||
|
||||
/* line 240, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 243, ../scss/_5_layout_theme-fr.scss */
|
||||
.pr5 {
|
||||
padding-right: 5px !important;
|
||||
}
|
||||
|
||||
/* line 241, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 244, ../scss/_5_layout_theme-fr.scss */
|
||||
.pr10 {
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
|
||||
/* line 242, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 245, ../scss/_5_layout_theme-fr.scss */
|
||||
.pr20 {
|
||||
padding-right: 20px !important;
|
||||
}
|
||||
|
|
2
assets/css/styles-responsive.min.css
vendored
2
assets/css/styles-responsive.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
images/header_drop.jpg
Normal file
BIN
images/header_drop.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 134 KiB |
8
index.md
8
index.md
|
@ -9,17 +9,17 @@ title: "Feeling Responsive – A Jekyll Theme Based On Foundation"
|
|||
header:
|
||||
image_fullwidth: "header_unsplash_12.jpg"
|
||||
widget-1:
|
||||
title: Blog
|
||||
title: "Blog & Portfolio"
|
||||
url: '/blog/'
|
||||
text: 'Every good portfolio website has a blog with fresh news, thoughts and develop­ments of your activities. <em>Feeling Responsive</em> offers you a fully functional blog with an archive page to give readers a quick overview of all your posts.'
|
||||
image: unsplash_9-302x182.jpg
|
||||
widget-2:
|
||||
title: Why use this theme?
|
||||
title: "Why use this theme?"
|
||||
url: '/info/'
|
||||
text: '<em>Feeling Responsive</em> is heavily built on <a href="http://foundation.zurb.com/">Foundation</a>, the fabulous responsive webdesign framework by Zurb. It supports a 12-column grid, persuades you with beautiful typography and is heavily optimized for speed.'
|
||||
text: '<em>Feeling Responsive</em> is heavily customizable.<br>1. Language-Support :)<br>2. Optimized for speed and it's responsive.<br>3. Built on <a href="http://foundation.zurb.com/">Foundation Framework</a>.<br>4. Six different Headers.<br>5. Customizable navigation, footer,...'
|
||||
image: unsplash_8-302x182.jpg
|
||||
widget-3:
|
||||
title: Download Theme
|
||||
title: "Download Theme"
|
||||
url: '/design/portfolio/'
|
||||
text: '<em>Feeling Responsive</em> is totally free and licensed under the MIT License. Make it your own and do with it what you want. Grab your copy or clone it at GitHub and start your website with it. Then tell me via Twitter <a href="http://twitter.com/phlow">@phlow</a>.'
|
||||
image: github-303x182.jpg
|
||||
|
|
|
@ -7,8 +7,11 @@ header:
|
|||
image_fullwidth: "header_unsplash_9.jpg"
|
||||
permalink: "/changelog/"
|
||||
---
|
||||
2015-02-18 // Version 0.98
|
||||
: Now with author-support and [Schema.org microdata](http://schema.org). Edit author(s) in `authors.yml` and use it via front matter like `author: your_author_name`. Added [Disqus-comments]({{ site.url}}/design/comments/#comments) to the mix.
|
||||
|
||||
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.
|
||||
: 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_meta: 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,6 +1,7 @@
|
|||
---
|
||||
layout: page
|
||||
title: "Contact"
|
||||
show_meta: false
|
||||
subheadline: "Wufoo-powered contact forms"
|
||||
description: "Get in touch with me? Use the contact form."
|
||||
permalink: "/contact/"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
show_metadata: false
|
||||
show_meta: false
|
||||
title: "Style your content!"
|
||||
subheadline: "Layouts of Feeling Responsive"
|
||||
header:
|
||||
|
|
|
@ -33,7 +33,7 @@ If you want to show the sidebar, just enter `sidebar: left` or `sidebar: right`
|
|||
|
||||
|
||||
### 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`.
|
||||
If you want to show metadata like categories, tags and date at the end of the page, just enter `show_meta: true`. It's on by default. You can change it via `config.yml`. To turn of metadata just enter – *yes, you guessed right* – `show_meta: false`.
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
show_metadata: false
|
||||
show_meta: 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."
|
||||
|
@ -15,8 +15,9 @@ permalink: "/getting-started/"
|
|||
5. Open `_data/language.yml` and translate the theme if necessary.
|
||||
6. Open `_data/services.yml` and customize links in the footer.
|
||||
7. Open `_data/network.yml` and customize links in the footer.
|
||||
8. [Read the documentation][1] to check out all features of *Feeling Responsive*.
|
||||
9. Make it yours and add your own content.
|
||||
8. Open `_data/authors.yml` and edit author information and set default author in `config.yml.
|
||||
9. [Read the documentation][1] to check out all features of *Feeling Responsive*.
|
||||
10. Make it yours and add your own content.
|
||||
|
||||
<a class="radius button small" href="{{ site.url }}/documentation/">Check out the documentation for all the tricks ›</a>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
show_metadata: false
|
||||
show_meta: 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."
|
||||
|
|
|
@ -2,22 +2,27 @@
|
|||
layout: page
|
||||
title: "About"
|
||||
subheadline: "Why another Jekyll Theme?"
|
||||
description: "Since years I am programming and designing websites. I love to work with open source tools and learn via code from others. This time I want to try to give something back..."
|
||||
show_meta: false
|
||||
teaser: "Since years I am programming and designing websites. I love to work with open source tools and learn via code from others. This time I want to try to give something back..."
|
||||
permalink: "/info/"
|
||||
header:
|
||||
image_fullwidth: "header_drop.jpg"
|
||||
---
|
||||
...and learn at the same time.
|
||||
|
||||
*Feeling Responsive* is my first theme which I let into the world. It's built on work and knowledge of others. While I am still programming it, you read about whats behind this theme in the – *hopefully* – near future.
|
||||
*Feeling Responsive* is my first theme which I let into the world. It's built on work and knowledge of others. While I am still designing it, you read about whats behind this theme in the – *hopefully* – near future.
|
||||
|
||||
|
||||
## Features
|
||||
|
||||
* Responsive Gallery, Videos, Grid, Typography,...
|
||||
* 100% GitHub Pages friendly
|
||||
* Easy editable navigation and social media links
|
||||
* Easy editable navigation, footer and social media links
|
||||
* Language Ready – just translate one file.
|
||||
* Lots of possibilities to customize it to your needs
|
||||
* Lots of different headers
|
||||
* Various post formats to let your content shine
|
||||
* Uses Jekyll 2.0
|
||||
* Uses Jekyll 3.0
|
||||
* Multiple possibilities to use images in different ways
|
||||
* Fine typography
|
||||
|
||||
|
@ -25,15 +30,11 @@ permalink: "/info/"
|
|||
|
||||
## I got inspired by...
|
||||
|
||||
[Michael Rose][1] and his fabulous [themes for jekyll][2].
|
||||
Authors of [A List Apart][4] and [Smashing Magazine][5] since 2002.
|
||||
[GitHub][6] and how they built such a habitat for cooperation worldwide.
|
||||
[Automattic][3] and how they built a fantastic community around WordPress.
|
||||
[Michael Rose][1] and his fabulous [themes for jekyll][2]. Authors of [A List Apart][4] and [Smashing Magazine][5] since 2002. [GitHub][6] and how they built such a habitat for cooperation worldwide. [Automattic][3] and how they built a fantastic community around WordPress. And many, many more...
|
||||
|
||||
Please make *Feeling Responsive* yours and if you like it, please link back to my homebase <a href="http://phlow.de/">Phlow</a>. That would be awesome.
|
||||
|
||||
And of course many more...
|
||||
|
||||
**Since then, fork it!**
|
||||
#### Since then, fork it!
|
||||
|
||||
Yours sincerelly, [Moritz »mo.« Sauer][7]
|
||||
|
||||
|
|
|
@ -8,19 +8,20 @@ header:
|
|||
permalink: "/roadmap/"
|
||||
---
|
||||
|
||||
## ToDo
|
||||
## Ideas and possible new features
|
||||
|
||||
* Better responsive typography
|
||||
* Additional [header]({{ site.url }}/headers/) with text
|
||||
* Google AdSense ads
|
||||
* Produce an introduction video to showcase *Feeling Responsive*
|
||||
* [Submit *Feeling Responsive* to jekyllthemes.org](http://jekyllthemes.org/)
|
||||
* Optimize HTML and use Schema.org-Attributes › <http://schema.org/Article>
|
||||
* Convert Foundation Sass to use native Jekyll Sass support
|
||||
* More post-formats for blogging like special post formats for links, audio, tweets,...
|
||||
* Produce some small tutorials to show features and how to customize *Feeling Responsive*
|
||||
|
||||
## Done
|
||||
|
||||
* <s>Optimize HTML and use Schema.org-Attributes › http://schema.org/Article</s>
|
||||
* <s>Disqus comments</s>
|
||||
* <s>Rework `list-entries.html` › now language ready</s>
|
||||
* [<s>Create custom 404.html-webpage</s>](https://help.github.com/articles/custom-404-pages/)
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
---
|
||||
layout: page
|
||||
show_meta: false
|
||||
title: "Search"
|
||||
permalink: "/search/"
|
||||
---
|
||||
|
||||
{% include google_search.html %}
|
||||
|
||||
<form onsubmit="google_search()" >
|
||||
<form style="padding-bottom: 200px;" onsubmit="google_search()" >
|
||||
<input type="text" id="google-search" placeholder="Enter search term and hit enter">
|
||||
</form>
|
Reference in a new issue