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."
# This is a switch to easily change the {{ site.url }}-variable to develop the theme locally
# - url: "http://localhost:4000"
# This URL is the main adresse. Don't include a slash at the end.
#
url: "http://phlow.github.io/feeling-responsive"
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: "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_retina: "/images/touch-icon-ipad-retina-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"
read: "Read"
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
title:
subheadline:
meta_description:
description:
date: 2014-03-28 00:00:00
subheadline:
title:
description:
categories:
-
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 class="small-12 columns" style="text-align: right;">
<a class="entypo entypo-48" href="#top-of-page">&nbsp;&#59231;&nbsp;</a>
</div><!-- /.small-12.columns -->
</div><!-- /.row -->
<div id="up-to-top" class="row">
<div class="small-12 columns" style="text-align: right;">
<a class="entypo entypo-48" href="#top-of-page">&nbsp;&#59231;&nbsp;</a>
</div><!-- /.small-12.columns -->
</div><!-- /.row -->
<footer id="footer-content" class="bg-grau">
<div id="footer">
<div class="row">
<div class="medium-6 large-5 columns">
<h5 class="shadow-black">{{ site.data.language.about_website }}</h5>
<footer id="footer-content" class="bg-grau">
<div id="footer">
<div class="row">
<div class="medium-6 large-5 columns">
<h5 class="shadow-black sans">{{ site.data.language.about_website }}</h5>
<p class="shadow-black">
{{ site.description }}
<a href="{{ site.url }}/about/">{{ site.data.language.more }}</a>
</p>
</div><!-- /.large-6.columns -->
<p class="shadow-black">
{{ site.description }}
<a href="{{ site.url }}/about/">{{ site.data.language.more }}</a>
</p>
</div><!-- /.large-6.columns -->
<div class="small-6 medium-3 large-3 large-offset-1 columns">
<nav>
<ul class="no-bullet shadow-black sans">
{% for service_item in site.data.services %}
{% if service_item.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url %}
{% endif %}
{% if forloop.first == true %}
<li class="shadow-black font-size-h5 sans">{{ service_item.menu_name }}</li>
{% else %}
<li {% if service_item.class %}class="{{ service_item.class }}" {% 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>
{% endif %}
{% endfor %}
</ul>
</nav>
</div><!-- /.large-4.columns -->
<div class="small-6 medium-3 large-3 large-offset-1 columns">
{% for service_item in site.data.services %}
{% if forloop.first == true %}
<h5 class="shadow-black sans">{{ service_item.menu_name }}</h5>
{% endif %}
{% endfor %}
<ul class="no-bullet shadow-black sans">
{% for service_item in site.data.services %}
{% if service_item.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url %}
{% endif %}
<li {% if service_item.class %}class="{{ service_item.class }}" {% 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>
{% endfor %}
</ul>
</div><!-- /.large-4.columns -->
<div class="small-6 medium-3 large-3 columns">
<h5 class="shadow-black">{{ site.data.language.thank_you }}</h5>
<ul class="no-bullet shadow-black">
<li><a href="http://entypo.com/">Icons by Daniel Bruce</a></li>
<li><a href="http://foundation.zurb.com/">Built on Foundation</a></li>
<li><a href="http://unsplash.com/">Images by Unsplash</a></li>
<li><a href="http://srobbin.com/jquery-plugins/backstretch/">Using Backstretch by Scott Robbin</a></li>
</ul>
</div><!-- /.large-3.columns -->
</div><!-- /.row -->
<div class="small-6 medium-3 large-3 columns">
{% for network_item in site.data.network %}
{% if forloop.first == true %}
<h5 class="shadow-black sans">{{ network_item.menu_name }}</h5>
{% endif %}
{% endfor %}
<ul class="no-bullet shadow-black sans">
{% for network_item in site.data.network %}
{% 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">
<nav class="row">
<section id="subfooter-left" class="b30 small-12 medium-6 columns">
<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>
</ul>
</section>
<div id="subfooter">
<nav class="row">
<section id="subfooter-left" class="b30 small-12 medium-6 columns">
<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>
</ul>
</section>
<section id="subfooter-right" class="small-12 medium-6 columns social-icons">
<ul class="inline-list">
{% 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>
{% endfor %}
</ul>
</section>
</nav>
</div><!-- /#subfooter -->
</footer>
<section id="subfooter-right" class="small-12 medium-6 columns social-icons">
<ul class="inline-list">
{% 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>
{% endfor %}
</ul>
</section>
</nav>
</div><!-- /#subfooter -->
</footer>

View file

@ -10,11 +10,11 @@
<div id="post-nav" class="row">
{% 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 %}
<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 %}
<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 %}
</div>
</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"
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
: 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.