Skip to content

Commit e5d20c0

Browse files
author
Moritz »mo.« Sauer
committed
Init Jekyll Theme
1 parent ef6d8f2 commit e5d20c0

161 files changed

Lines changed: 11696 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Theme: Feeling Responsive
2+
3+
**Repository for Feeling Responsive Theme for Jekyll**
4+
5+
Currently in development, but you can have a look at it at <http://phlow.github.io/feeling-responsive/>

_config.yml

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
# ASCII-Font › http://patorjk.com/software/taag/#p=display&f=Slant&t=Phlow
2+
#
3+
# _____ _ __ _____ __ __ _
4+
# / ___/(_) /____ / ___/___ / /_/ /_(_)___ ____ ______
5+
# \__ \/ / __/ _ \ \__ \/ _ \/ __/ __/ / __ \/ __ `/ ___/
6+
# ___/ / / /_/ __/ ___/ / __/ /_/ /_/ / / / / /_/ (__ )
7+
# /____/_/\__/\___/ /____/\___/\__/\__/_/_/ /_/\__, /____/
8+
# /____/
9+
title: "Feeling Responsive"
10+
slogan: "A Responsive Theme for Jekyll"
11+
description: "Feeling Responsive is built on the fabulous Foundation Framework and comes with lots of features to show your content right."
12+
logo: "logo.png"
13+
baseurl: ""
14+
paginate: 5
15+
paginate_path: "blog/page:num"
16+
17+
url: "http://localhost:4000"
18+
# - url: "http://phlow.github.io/feeling-responsive"
19+
20+
21+
22+
# Header
23+
language: "en"
24+
# google_author: ""
25+
26+
27+
# _ __ _ __ _
28+
# / | / /___ __ __(_)___ _____ _/ /_(_)___ ____
29+
# / |/ / __ `/ | / / / __ `/ __ `/ __/ / __ \/ __ \
30+
# / /| / /_/ /| |/ / / /_/ / /_/ / /_/ / /_/ / / / /
31+
# /_/ |_/\__,_/ |___/_/\__, /\__,_/\__/_/\____/_/ /_/
32+
# /____/
33+
#
34+
# Open _data/navigation.yml to adjust the left and right topbar navigation
35+
#
36+
37+
38+
39+
# _____ __________
40+
# / ___// ____/ __ \
41+
# \__ \/ __/ / / / /
42+
# ___/ / /___/ /_/ /
43+
# /____/_____/\____/ Verify Website to Webmaster Tools
44+
45+
google_author: "https://plus.google.com/u/0/118311555303973066167"
46+
google_site_verification: ""
47+
# bing_webmastertools_id: ""
48+
# alexa_verify_id: ""
49+
50+
51+
52+
# ______ _
53+
# / ____/___ __ __(_)________ ____ _____
54+
# / /_ / __ `/ | / / / ___/ __ \/ __ \/ ___/
55+
# / __/ / /_/ /| |/ / / /__/ /_/ / / / (__ )
56+
# /_/ \__,_/ |___/_/\___/\____/_/ /_/____/ Favicons, Apple Touch Buttons
57+
# More information » http://j.mp/apple-touch-icons
58+
59+
favicon: "http://images.phlow.de/phlow/phlow-favicon-32x.png" # iOS7 Size 32x32
60+
apple_touch_icon_iphone: "http://images.phlow.de/phlow/phlow-touch-icon-iphone-60x.png" # iOS7 Size 60x60
61+
apple_touch_icon_iphone_retina: "http://images.phlow.de/phlow/phlow-touch-icon-iphone-retina-120x.png" # iOS7 Size 120x120
62+
apple_touch_icon_ipad: "http://images.phlow.de/phlow/phlow-touch-icon-ipad-76x.png" # iOS7 Size 76x76
63+
apple_touch_icon_ipad_retina: "http://images.phlow.de/phlow/phlow-touch-icon-ipad-retina-152x.png" # iOS7 Size 152x152
64+
apple_touch_icon_precomposed: "http://images.phlow.de/phlow/phlow-touch-icon-android-152x.png" # iOS7 Size 152x152
65+
66+
67+
# ______ __ __
68+
# / ____/___ _________ / /_ ____ ____ / /__
69+
# / /_ / __ `/ ___/ _ \/ __ \/ __ \/ __ \/ //_/
70+
# / __/ / /_/ / /__/ __/ /_/ / /_/ / /_/ / ,<
71+
# /_/ \__,_/\___/\___/_.___/\____/\____/_/|_| Facebook-Optimization › http://j.mp/fb_optimize
72+
73+
og_image: "http://images.phlow.de/phlow/phlow_de-logo-512x.png"
74+
# og_locale: "de_DE"
75+
# og_type: "website"
76+
# og_title: ""
77+
# og_description: ""
78+
# og_url: ""
79+
# og_site_name: ""
80+
81+
82+
# _____ _ __ __ ___ ___
83+
# / ___/____ _____(_)___ _/ / / |/ /__ ____/ (_)___ _
84+
# \__ \/ __ \/ ___/ / __ `/ / / /|_/ / _ \/ __ / / __ `/
85+
# ___/ / /_/ / /__/ / /_/ / / / / / / __/ /_/ / / /_/ /
86+
# /____/\____/\___/_/\__,_/_/ /_/ /_/\___/\__,_/_/\__,_/
87+
#
88+
# Open _data/socialmedia.yml to adjust the left and right topbar navigation
89+
#
90+
91+
92+
93+
94+
# Social Media
95+
96+
username: phlow
97+
98+
99+
# Build settings
100+
markdown: kramdown
101+
permalink: /:categories/:title/
102+
highlight: pygments
103+
exclude: []
104+
include: ['.htaccess']
105+
106+

_data/navigation.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
- title: Start
2+
url: "/index.html"
3+
side: left
4+
5+
- title: "Style your content"
6+
url: "/design/style-guide/"
7+
side: left
8+
dropdown:
9+
- title: "Style Your Posts"
10+
url: "/design/elements/"
11+
- title: "The Grid"
12+
url: "/design/grid/"
13+
- title: "Blog-Page"
14+
url: "/blog/"
15+
- title: "Post-Layout"
16+
url: "/design/post/"
17+
- title: "Post-Left-Sidebar"
18+
url: "/design/post-left-sidebar/"
19+
- title: "Post-Right-Sidebar"
20+
url: "/design/post-right-sidebar/"
21+
- title: "Typography"
22+
url: "/typography/"
23+
# - title: "Fullwidth Layout"
24+
# url: "/design/full-width/"
25+
26+
# - title: "Portfolio"
27+
# url: "/portfolio/"
28+
# side: left
29+
30+
- title: Documentation
31+
url: "/documentation/"
32+
side: left
33+
34+
- title: Blog
35+
url: "/blog/"
36+
side: left
37+
38+
- title: "Changelog"
39+
url: "/changelog/"
40+
side: left
41+
42+
- title: "Contact"
43+
url: "http://phlow.de/kontakt/"
44+
side: right
45+
46+

_data/socialmedia.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
- name: YouTube
2+
url: http://www.youtube.com/PhlowMedia
3+
id: social-youtube
4+
class: entypo
5+
title: "Videos, Video-Anleitungen und Filme von Phlow auf YouTube"
6+
entypo: "&#9654;"
7+
8+
- name: Twitter
9+
url: http://twitter.com/phlow
10+
id: social-twitter
11+
class: entypo-social
12+
title: "Immer das Neuste von Phlow gibt es auf Twitter"
13+
entypo: "&#62217;"
14+
15+
- name: Facebook
16+
url: http://www.facebook.com/phlow.media
17+
id: social-facebook
18+
class: entypo-social
19+
title: "Lass uns Freunde sein!"
20+
entypo: "&#62220;"
21+
22+
- name: Soundcloud
23+
url: http://soundcloud.com/phlow
24+
id: social-soundcloud
25+
class: entypo-social
26+
title: "Sounds und Downloads und mehr"
27+
entypo: "&#62280;"
28+
29+
- name: GitHub
30+
url: http://github.com/phlow
31+
id: social-github
32+
class: entypo-social
33+
title: Code und mehr...
34+
entypo: "&#62208;"
35+
36+
- name: Instagram
37+
url: http://instagram.com/phlowmedia
38+
id: social-instagram
39+
class: entypo-social
40+
title: "Bilder und Impressionen mit und ohne Filter..."
41+
entypo: "&#62253;"
42+
43+
- name: Pinterst
44+
url: http://www.pinterest.com/phlowmedia/
45+
id: social-pinterest
46+
class: entypo-social
47+
title: "Bilder, Fotos, Illustrationen, Grafiken sammeln..."
48+
entypo: "&#62227;"
49+
50+
- name: Mixcloud
51+
url: http://www.mixcloud.com/phlow/
52+
id: social-mixcloud
53+
class: entypo
54+
title: "Mixe, was sonst?"
55+
entypo: "&#9729;"

_includes/_about.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<h2>Why use this theme?</h2>
2+
3+
<p>
4+
<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 <a href="/typography/">typography</a> and is heavily optimized for speed.
5+
</p>
6+

_includes/_site_description.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
»Feeling Responsive« is a responsive theme based on the fantastic foundation framework with beautiful typography and a bright color palette.

_includes/footer.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<footer id="footer-content" class="bg-grau">
2+
<div id="footer">
3+
<div class="row">
4+
<div class="medium-6 large-5 columns">
5+
<h5 class="black-shadow">About this Website</h5>
6+
7+
<p class="black-shadow">
8+
{% include _site_description.html %}
9+
</p>
10+
</div><!-- /.large-6.columns -->
11+
12+
13+
<div class="small-6 medium-3 large-3 large-offset-1 columns">
14+
<aside>
15+
<div class="textwidget">
16+
<h5 class="black-shadow">Services</h5>
17+
<ul class="no-bullet black-shadow">
18+
<li><a href="contact.html">Contact</a></li>
19+
<li class="rss-link"><a href="{{ site.url }}/feed.xml">RSS</a></li>
20+
<li class="sitemap-link"><a href="{{ site.url }}/sitemap.xml">Sitemap.xml</a></li>
21+
</ul>
22+
</div>
23+
</aside>
24+
</div><!-- /.large-4.columns -->
25+
26+
27+
<div class="small-6 medium-3 large-3 columns">
28+
<h5 class="black-shadow">Thank You!</h5>
29+
<ul class="no-bullet black-shadow">
30+
<li><a href="http://entypo.com/">Icons by Daniel Bruce</a></li>
31+
<li><a href="http://foundation.zurb.com/">Built on Foundation</a></li>
32+
<li><a href="http://unsplash.com/">Images by Unsplash</a></li>
33+
<li><a href="http://srobbin.com/jquery-plugins/backstretch/">Using Backstretch by Scott Robbin</a></li>
34+
</ul>
35+
</div><!-- /.large-3.columns -->
36+
</div><!-- /.row -->
37+
38+
<div class="row">
39+
<div class="small-12 columns" style="text-align: right;">
40+
<a class="entypo entypo-48" href="#masthead">&#59231;</a>
41+
</div><!-- /.small-12.columns -->
42+
</div><!-- /.row -->
43+
44+
</div><!-- /#footer -->
45+
46+
47+
<div id="subfooter">
48+
<nav class="row">
49+
<section id="subfooter-left" class="bottom-30 small-12 medium-6 columns">
50+
<ul class="inline-list">
51+
<li><a href="{{ site.url }}/about/">About</a></li>
52+
<li><a href="http://phlow.de/webdesign/">Theme &amp; Webdesign by Phlow</a></li>
53+
</ul>
54+
</section>
55+
56+
<section id="subfooter-right" class="small-12 medium-6 columns social-icons">
57+
<ul class="inline-list">
58+
{% for social_item in site.data.socialmedia %}
59+
<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>
60+
{% endfor %}
61+
</ul>
62+
</section>
63+
</nav>
64+
</div><!-- /#subfooter -->
65+
</footer>

_includes/footer_scripte.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<script src="{{ site.url }}/assets/js/app.min.js"></script>
2+
3+
<script>
4+
$("#masthead").backstretch("{{ site.url }}/assets/img/{% if page.image_header %}{{ page.image_header }}{% else %}unsplash_3.jpg{% endif %}");
5+
</script>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<dl>
2+
{% for post in site.posts reversed %}
3+
{% if post.categories contains include.list-category %}
4+
<dt>
5+
<a href="{{ site.url }}{{ post.url }}">{% if post.chapter != nil %}{{ post.chapter }}. {% endif %}{{ post.title }}</a>
6+
</dt>
7+
{% if post.description %}
8+
<dd>
9+
{{ post.description }}
10+
</dd>
11+
{% endif %}
12+
{% endif %}
13+
{% endfor %}
14+
</dl>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<ul class="side-nav">
2+
{% assign counter = 1 %}
3+
{% for post in site.posts reversed %}
4+
{% if post.categories contains include.list-category %}
5+
<li><a href="{{ site.url }}{{ post.url }}">#{{ counter }} {{ post.title }}</a></li>
6+
{% assign counter=counter | plus:1 %}
7+
{% endif %}
8+
{% endfor %}
9+
<li>&nbsp;</li>
10+
</ul>

0 commit comments

Comments
 (0)