1
0
Fork 0

see changelog 0.94

This commit is contained in:
Moritz »mo.« Sauer 2015-01-12 09:33:22 +01:00
parent 6f1fc17846
commit 5654c5958a
10 changed files with 270 additions and 74 deletions

View file

@ -19,11 +19,19 @@ slogan: "A Responsive Theme for Jekyll"
description: "»Feeling Responsive« is a responsive theme for Jekyll based on the fabulous foundation framework with beautiful typography and a bright color palette." description: "»Feeling Responsive« is a responsive theme for Jekyll based on the fabulous foundation framework with beautiful typography and a bright color palette."
# This is a switch to easily change the {{ site.url }}-variable to develop the theme locally # This URL is the main adresse. Don't include a slash at the end.
# - url: "http://localhost:4000" #
url: "http://phlow.github.io/feeling-responsive" url: "http://phlow.github.io/feeling-responsive"
baseurl: "" baseurl: ""
# This URL points directly to the images directory making
# things easier to link to images in posts and templates. It needs a slash.
#
# Example: <img src="{{ site.urlimg }}/{{ post.image.title }}">
# Markdown-Example for posts ![Image Text]({{ site.urlimg }}/image.jpg)
#
urlimg: "http://phlow.github.io/feeling-responsive/images/"
# Logo size is 600x80 pixels # Logo size is 600x80 pixels
logo: "logo.png" logo: "logo.png"
@ -89,6 +97,8 @@ apple_touch_icon_iphone_retina: "/images/touch-icon-iphone-retina-120x.png" #
apple_touch_icon_ipad: "/images/touch-icon-ipad-76x.png" # iOS7 Size 76x76 apple_touch_icon_ipad: "/images/touch-icon-ipad-76x.png" # iOS7 Size 76x76
apple_touch_icon_ipad_retina: "/images/touch-icon-ipad-retina-152x.png" # iOS7 Size 152x152 apple_touch_icon_ipad_retina: "/images/touch-icon-ipad-retina-152x.png" # iOS7 Size 152x152
apple_touch_icon_precomposed: "/images/touch-icon-android-152x.png" # iOS7 Size 152x152 apple_touch_icon_precomposed: "/images/touch-icon-android-152x.png" # iOS7 Size 152x152
msapplication_tileimage: "/images/windows-8-tile-icon-144x.png" # Windows 8 Tile 144x144
msapplication_tilecolor: "#334D5C" # Windows 8 Tile Backgroundcolor
# ______ __ __ # ______ __ __

9
_config_dev.yml Normal file
View file

@ -0,0 +1,9 @@
#
# This config-file is only needed for development. Instead of changing the url
# everytime you work locally on the project, you start both config-files, overwriting
# the first one with the development variables needed.
#
# Start development with  $ jekyll serve --config _config.yml,_config_dev.yml
url: "http://localhost:4000"
urlimg: "http://localhost:4000/images/"

View file

@ -13,4 +13,3 @@ previous: "Previous"
previous_posts: "Previous Posts" previous_posts: "Previous Posts"
read: "Read" read: "Read"
read_more: "Read More " read_more: "Read More "
thank_you: "Thank You!"

21
_data/network.yml Normal file
View file

@ -0,0 +1,21 @@
- menu_name: "Dankeschön"
- name: "Icons by Daniel Bruce"
url: "http://entypo.com/"
class: "network-entypo"
title: "Icons by Daniel Bruce"
- name: "Built on Foundation"
url: "http://foundation.zurb.com/"
class: "services-newsletter"
title: "Built on Foundation"
- name: "Images by Unsplash"
url: "http://unsplash.com/"
class: "rss-link"
title: "Images by Unsplash"
- name: "Using Backstretch by Scott Robbin"
url: "http://srobbin.com/jquery-plugins/backstretch/"
class: "sitemap-link"
title: "Using Backstretch by Scott Robbin"

View file

@ -1,10 +1,8 @@
--- ---
layout: page layout: page
title: subheadline:
subheadline: title:
meta_description: description:
description:
date: 2014-03-28 00:00:00
categories: categories:
- -
tags: tags:

View file

@ -0,0 +1,30 @@
---
layout: page-fullwidth
subheadline:
title:
description:
meta_description:
categories:
-
tags:
-
---
<div class="row">
<div class="medium-4 medium-push-8 columns" markdown="1">
<div class="panel radius" markdown="1">
**Table of Contents**
{: #toc }
* TOC
{:toc}
</div>
</div><!-- /.medium-4.columns -->
<div class="medium-8 medium-pull-4 columns" markdown="1">
</div><!-- /.medium-8.columns -->
</div><!-- /.row -->

View file

@ -1,75 +1,85 @@
<div id="up-to-top" class="row"> <div id="up-to-top" class="row">
<div class="small-12 columns" style="text-align: right;"> <div class="small-12 columns" style="text-align: right;">
<a class="entypo entypo-48" href="#top-of-page">&nbsp;&#59231;&nbsp;</a> <a class="entypo entypo-48" href="#top-of-page">&nbsp;&#59231;&nbsp;</a>
</div><!-- /.small-12.columns --> </div><!-- /.small-12.columns -->
</div><!-- /.row --> </div><!-- /.row -->
<footer id="footer-content" class="bg-grau"> <footer id="footer-content" class="bg-grau">
<div id="footer"> <div id="footer">
<div class="row"> <div class="row">
<div class="medium-6 large-5 columns"> <div class="medium-6 large-5 columns">
<h5 class="shadow-black">{{ site.data.language.about_website }}</h5> <h5 class="shadow-black sans">{{ site.data.language.about_website }}</h5>
<p class="shadow-black"> <p class="shadow-black">
{{ site.description }} {{ site.description }}
<a href="{{ site.url }}/about/">{{ site.data.language.more }}</a> <a href="{{ site.url }}/about/">{{ site.data.language.more }}</a>
</p> </p>
</div><!-- /.large-6.columns --> </div><!-- /.large-6.columns -->
<div class="small-6 medium-3 large-3 large-offset-1 columns"> <div class="small-6 medium-3 large-3 large-offset-1 columns">
<nav> {% for service_item in site.data.services %}
<ul class="no-bullet shadow-black sans"> {% if forloop.first == true %}
{% for service_item in site.data.services %} <h5 class="shadow-black sans">{{ service_item.menu_name }}</h5>
{% if service_item.url contains 'http' %} {% endif %}
{% assign domain = '' %} {% endfor %}
{% else %}
{% assign domain = site.url %} <ul class="no-bullet shadow-black sans">
{% endif %} {% for service_item in site.data.services %}
{% if service_item.url contains 'http' %}
{% if forloop.first == true %} {% assign domain = '' %}
<li class="shadow-black font-size-h5 sans">{{ service_item.menu_name }}</li> {% else %}
{% else %} {% assign domain = site.url %}
<li {% if service_item.class %}class="{{ service_item.class }}" {% endif %}> {% endif %}
<a href="{{ domain }}{{ service_item.url }}" {% if service_item.url contains 'http' %}target="_blank" {% endif %} title="{{ service_item.title }}">{{ service_item.name }}</a> <li {% if service_item.class %}class="{{ service_item.class }}" {% endif %}>
</li> <a href="{{ domain }}{{ service_item.url }}" {% if service_item.url contains 'http' %}target="_blank" {% endif %} title="{{ service_item.title }}">{{ service_item.name }}</a>
{% endif %} </li>
{% endfor %} {% endfor %}
</ul> </ul>
</nav> </div><!-- /.large-4.columns -->
</div><!-- /.large-4.columns -->
<div class="small-6 medium-3 large-3 columns"> <div class="small-6 medium-3 large-3 columns">
<h5 class="shadow-black">{{ site.data.language.thank_you }}</h5> {% for network_item in site.data.network %}
<ul class="no-bullet shadow-black"> {% if forloop.first == true %}
<li><a href="http://entypo.com/">Icons by Daniel Bruce</a></li> <h5 class="shadow-black sans">{{ network_item.menu_name }}</h5>
<li><a href="http://foundation.zurb.com/">Built on Foundation</a></li> {% endif %}
<li><a href="http://unsplash.com/">Images by Unsplash</a></li> {% endfor %}
<li><a href="http://srobbin.com/jquery-plugins/backstretch/">Using Backstretch by Scott Robbin</a></li>
</ul> <ul class="no-bullet shadow-black sans">
</div><!-- /.large-3.columns --> {% for network_item in site.data.network %}
</div><!-- /.row --> {% if network_item.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url %}
{% endif %}
<li {% if network_item.class %}class="{{ network_item.class }}" {% endif %}>
<a href="{{ domain }}{{ network_item.url }}" {% if network_item.url contains 'http' %}target="_blank" {% endif %} title="{{ network_item.title }}">{{ network_item.name }}</a>
</li>
{% endfor %}
</ul>
</div><!-- /.large-3.columns -->
</div><!-- /.row -->
</div><!-- /#footer --> </div><!-- /#footer -->
<div id="subfooter"> <div id="subfooter">
<nav class="row"> <nav class="row">
<section id="subfooter-left" class="b30 small-12 medium-6 columns"> <section id="subfooter-left" class="b30 small-12 medium-6 columns">
<ul class="inline-list"> <ul class="inline-list">
<li>We &hearts; <a style="display:inline;" href="http://jekyllrb.com/" target="_blank">Jekyll</a> &amp; <a style="display:inline;" href="http://phlow.github.io/feeling-responsive/">Feeling Responsive</a> </li> <li>We &hearts; <a style="display:inline;" href="http://jekyllrb.com/" target="_blank">Jekyll</a> &amp; <a style="display:inline;" href="http://phlow.github.io/feeling-responsive/">Feeling Responsive</a> </li>
</ul> </ul>
</section> </section>
<section id="subfooter-right" class="small-12 medium-6 columns social-icons"> <section id="subfooter-right" class="small-12 medium-6 columns social-icons">
<ul class="inline-list"> <ul class="inline-list">
{% for social_item in site.data.socialmedia %} {% for social_item in site.data.socialmedia %}
<li><a href="{{ social_item.url }}" target="_blank" id="{{ social_item.id }}" class="{{ social_item.class }}" title="{{ social_item.title }}">{{ social_item.entypo }}</a></li> <li><a href="{{ social_item.url }}" target="_blank" id="{{ social_item.id }}" class="{{ social_item.class }}" title="{{ social_item.title }}">{{ social_item.entypo }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
</section> </section>
</nav> </nav>
</div><!-- /#subfooter --> </div><!-- /#subfooter -->
</footer> </footer>

View file

@ -10,11 +10,11 @@
<div id="post-nav" class="row"> <div id="post-nav" class="row">
{% if page.previous.url %} {% if page.previous.url %}
<div class="small-5 columns"><a class="button small radius prev" href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a></div><!-- /.small-4.columns --> <div class="small-5 columns"><a class="button small radius prev" href="{{ site.url }}{{page.previous.url}}">&laquo; {{page.previous.title}}</a></div><!-- /.small-4.columns -->
{% endif %} {% endif %}
<div class="small-2 columns text-center"><a class="radius button small" href="{{ site.url }}/blog/archive/" title="Blog Archive">{{ site.data.language.archive }}</a></div><!-- /.small-4.columns --> <div class="small-2 columns text-center"><a class="radius button small" href="{{ site.url }}/blog/archive/" title="Blog Archive">{{ site.data.language.archive }}</a></div><!-- /.small-4.columns -->
{% if page.next.url %} {% if page.next.url %}
<div class="small-5 columns text-right"><a class="button small radius next" href="{{page.next.url}}">{{page.next.title}} &raquo;</a></div><!-- /.small-4.columns --> <div class="small-5 columns text-right"><a class="button small radius next" href="{{ site.url }}{{page.next.url}}">{{page.next.title}} &raquo;</a></div><!-- /.small-4.columns -->
{% endif %} {% endif %}
</div> </div>
</div><!-- /.page-meta --> </div><!-- /.page-meta -->

116
assets/css/style_rss.css Normal file
View file

@ -0,0 +1,116 @@
rss {
display:block;
margin:10px;
padding: 10px 0;
font-size: 62.5%;
}
rss:before {
content:"\00BB Sie befinden sich auf einem RSS-NewsFeed, nicht auf der Website. Bitte besuchen Sie die Website bueltge.de";
font-size: 2em;
color: red;
margin: 10px;
}
channel {
display:block;
background-color:#eee;
font-size: 1.2em;
font-family: Verdana, Arial, Helvetice, sans-serif;
padding: 5px 0;
}
item {
display: block;
padding:10px;
margin: 5px 0;
border-top:1px solid #CCC;
border-bottom:1px solid #CCC;
background-color: white;
}
channel>title, channel>description, channel>pubDate {
display: block;
margin: 10px;
background-color: #eee;
color: #556B2F;
}
channel>pubDate {
font-size: .8em;
}
channel>pubDate:before {
content:"Letzte Aktualisierung: ";
}
channel>title {
font-size: 1.6em;
font-weight: bold;
}
channel>description {
font-size: 1.1em;
margin-bottom: 10px;
font-weight: bold;
}
item {
font-size: 0px
}
item>title {
font-weight:bold;
font-size: 12px;
}
item>title:after {
content:" \00BB ";
}
item>link, item>pubDate, item>category {
color: #556B2F;
font-size: 11px;
}
item>link:before {
content:" Link zum Beitrag: ";
color: black;
}
item>pubDate:before {
color: black;
content:" erstellt am: ";
margin-left: 100%;
}
item>category:before {
color: black;
content:" in Kategorie: ";
}
item>description:before {
color: black;
font-weight:bold;
content:" \00BB ";
}
item>description {
font-size: 11px;
margin-left: 100%;
}
item>description:after {
color: black;
font-weight:bold;
content:" \00AB ";
}
channel>link, channel>generator, channel>language, channel>docs, channel>image {
display: none;
}
item>comments, item>guid {
display: none;
}

View file

@ -7,6 +7,9 @@ image:
header: "header_unsplash_9.jpg" header: "header_unsplash_9.jpg"
permalink: "/changelog/" permalink: "/changelog/"
--- ---
2015-01-12 // Version 0.94
: Added Windows 8-Tile in `config.yml` and `header.html`. Added `_config_dev.yml` for easier local development. Use `jekyll serve --config _config.yml,_config_dev.yml` to overwrite `url`-settings of the main configuration. Added `_data/network.yml` to customize links in the footer-area.
2014-12-22 // Version 0.93 2014-12-22 // Version 0.93
: Improved speed through the use of [webfontloader](https://github.com/typekit/webfontloader). Reduced Volkhov font and only embedded normal weight. Now fonts load asynchronous and the package is 53kb lighter. : Improved speed through the use of [webfontloader](https://github.com/typekit/webfontloader). Reduced Volkhov font and only embedded normal weight. Now fonts load asynchronous and the package is 53kb lighter.