Skip to content

Commit c369fe7

Browse files
committed
copied from feeling_responsive
1 parent 93a8cd9 commit c369fe7

File tree

183 files changed

+21808
-24
lines changed

Some content is hidden

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

183 files changed

+21808
-24
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site/
2+
.sass-cache/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014 Moritz »mo.« Sauer // Phlow.de
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

_config.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1-
_config.yml
1+
# Site settings
2+
title: OpenIntents
3+
4+
description: >
5+
OpenIntents is a community to show case the use of the Android intent system.
6+
baseurl: "" # the subpath of your site, e.g. /blog/
7+
url: "http://www.openintents.org" # the base hostname & protocol for your site
8+
twitter_username: openintents
9+
github_username: openintents
210

11+
# Build settings
12+
markdown: kramdown
13+
highlighter: rouge
14+
15+
collections:
16+
intent_specs:
17+
output: true

_config_dev.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# This config-file is only needed for development. Instead of changing the url
3+
# everytime you work locally on the project, you start both config-files, overwriting
4+
# the first one with the development variables needed.
5+
#
6+
# Start development with › $ jekyll serve --config _config.yml,_config_dev.yml
7+
8+
url: "http://localhost:4000"
9+
urlimg: "http://localhost:4000/images/"

_data/authors.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Author details
2+
#
3+
# 1. Edit information below
4+
# 2. Change author in default settings in config.yml
5+
#
6+
# Ressource › http://blog.sorryapp.com/blogging-with-jekyll/2014/02/06/adding-authors-to-your-jekyll-site.html
7+
your_author_name:
8+
name: "Moritz »mo.« Sauer"
9+
url: http://mo.phlow.de/

_data/language.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
info_website: "About This Site"
2+
archive: "Archive"
3+
blog_archive: "Blog Archive"
4+
blog: "Blog"
5+
comments_headline: "Dialogue & Discussion"
6+
more: "More ›"
7+
more_articles: "More Articles"
8+
navigation_title: "Navigation"
9+
new_blog_entries: "New Blog Articles"
10+
next: "Next"
11+
next_posts: "Next Posts"
12+
previous: "Previous"
13+
previous_posts: "Previous Posts"
14+
read: "Read"
15+
read_more: "Read More ›"
16+
if_you_are_not_redirected_automatically: "If you are not redirected automatically,"
17+
click_here: "click here"
18+
next_post_in: "Next Post in"
19+
previous_post_in: "Previous Post in"
20+
breadcrumb_start: "Start"
21+
edit: "Edit"
22+
this_content_is_open_source: "This content is open source."
23+
help_improve_it: "Help improve it"
24+
enter_search_term: "Enter search term and hit enter"

_data/language_de.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
info_website: "Über diese Website"
2+
archive: "Archiv"
3+
blog_archive: "Blog Archiv"
4+
blog: "Blog"
5+
comments_headline: "Dialog & Diskussion"
6+
more: "Mehr ›"
7+
more_articles: "Mehr Artikel"
8+
navigation_title: "Navigation"
9+
new_blog_entries: "Neue Blog Artikel"
10+
next: "Nächste"
11+
next_posts: "Nächster Beitrag"
12+
previous: "Vorherige"
13+
previous_posts: "Vorheriger Beitrag"
14+
read: "Lesen"
15+
read_more: "Mehr lesen ›"
16+
if_you_are_not_redirected_automatically: "Wenn Du nicht automatisch weitergeleitet wirst,"
17+
click_here: "klick hier"
18+
next_post_in: "Nächster Beitrag in"
19+
previous_post_in: "Vorheriger Beitrag in"
20+
breadcrumb_start: "Start"
21+
edit: "Editieren"
22+
this_content_is_open_source: "Der Inhalt ist Open Source."
23+
help_improve_it: "Hilf ihn zu verbessern"
24+
enter_search_term: "Suchbegriff eingeben und Eingabetaste drücken"

_data/navigation.yml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
- title: Start
2+
url: "/"
3+
side: left
4+
5+
- title: Getting Started
6+
url: "/getting-started/"
7+
side: left
8+
9+
- title: "Templates"
10+
url: "/design/"
11+
side: left
12+
dropdown:
13+
- title: "Grid & Colors"
14+
url: "/design/grid/"
15+
- title: "Typography"
16+
url: "/design/typography/"
17+
- title: "Page/Post"
18+
url: "/design/page/"
19+
- title: "Post-Left-Sidebar"
20+
url: "/design/post-left-sidebar/"
21+
- title: "Post-Right-Sidebar"
22+
url: "/design/post-right-sidebar/"
23+
- title: "Page Full-Width"
24+
url: "/design/page-fullwidth/"
25+
- title: "Blog-Page"
26+
url: "/blog/"
27+
- title: "Video"
28+
url: "/design/video/"
29+
- title: "Gallery"
30+
url: "/design/gallery/"
31+
- title: "Portfolio"
32+
url: "/design/portfolio/"
33+
34+
- title: "Header Styles"
35+
url: "/headers/"
36+
side: left
37+
dropdown:
38+
- title: "Header with Full-Width-Image"
39+
url: "/design/header-full-width-image/"
40+
- title: "Header with Image and Pattern"
41+
url: "/design/header-image-pattern/"
42+
- title: "Header with image and color"
43+
url: "/design/header-image-color/"
44+
- title: "Header Only With Logo"
45+
url: "/design/header-logo-only/"
46+
- title: "Header With Text"
47+
url: "/design/header-with-text/"
48+
- title: "No Header"
49+
url: "/design/no-header/"
50+
- title: "No Header but Image"
51+
url: "/design/no-header-but-image/"
52+
53+
- title: Documentation
54+
url: "/documentation/"
55+
side: left
56+
dropdown:
57+
- title: Documentation
58+
url: "/documentation/"
59+
- title: "Changelog"
60+
url: "/changelog/"
61+
- title: "Roadmap"
62+
url: "/roadmap/"
63+
64+
- title: Blog
65+
url: "/blog/"
66+
side: left
67+
dropdown:
68+
- title: Blog
69+
url: "/blog/"
70+
- title: "Blog Archive"
71+
url: "/blog/archive/"
72+
73+
- title: "Search"
74+
url: "/search/"
75+
side: right
76+
77+
- title: "Contact"
78+
url: "/contact/"
79+
side: right

_data/network.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
- menu_name: "Dankeschön"
2+
3+
- name: "Icons by Daniel Bruce"
4+
url: "http://entypo.com/"
5+
class: "network-entypo"
6+
title: "Icons by Daniel Bruce"
7+
8+
- name: "Built on Foundation"
9+
url: "http://foundation.zurb.com/"
10+
class: "services-newsletter"
11+
title: "Built on Foundation"
12+
13+
- name: "Images by Unsplash"
14+
url: "http://unsplash.com/"
15+
class: "rss-link"
16+
title: "Images by Unsplash"
17+
18+
- name: "Using Backstretch by Scott Robbin"
19+
url: "http://srobbin.com/jquery-plugins/backstretch/"
20+
class: "sitemap-link"
21+
title: "Using Backstretch by Scott Robbin"

_data/services.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
- menu_name: "Services"
2+
3+
- name: "Contact"
4+
url: "/contact/"
5+
class: "services-contact"
6+
title: "Contact"
7+
8+
- name: "RSS"
9+
url: "/feed.xml"
10+
class: "rss-link"
11+
title: "Subscribe to RSS"
12+
13+
- name: "sitemap.xml"
14+
url: "/sitemap.xml"
15+
class: "sitemap-link"
16+
title: "Sitemap for Google Webmastertools"

0 commit comments

Comments
 (0)