-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3e8fd57
Showing
188 changed files
with
11,041 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
_site | ||
.sass-cache | ||
.jekyll-metadata | ||
bower_components |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: error | ||
permalink: /404.html | ||
error-code: 404 - Not Found | ||
--- | ||
|
||
# 404 - Not found | ||
|
||
Uhhh, ahhh. Seems that we do not know this page. | ||
Please try it again on the [website]({{ site.baseurl }}/). | ||
|
||
**Top 5 reasons, why this happens:** | ||
|
||
* A ninja stole the content right in front your nose. Of course you have seen nothing. | ||
* A disruption of the space-time continuum formed. The content was desintegrated. | ||
* Chuck Norris did not allow us to create this site. | ||
* You tried to do something very nasty to our site. Do not try it again. | ||
* Seems this page does not exist ... sorry :( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'jekyll' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
addressable (2.4.0) | ||
colorator (1.1.0) | ||
ffi (1.9.14) | ||
forwardable-extended (2.6.0) | ||
jekyll (3.3.0) | ||
addressable (~> 2.4) | ||
colorator (~> 1.0) | ||
jekyll-sass-converter (~> 1.0) | ||
jekyll-watch (~> 1.1) | ||
kramdown (~> 1.3) | ||
liquid (~> 3.0) | ||
mercenary (~> 0.3.3) | ||
pathutil (~> 0.9) | ||
rouge (~> 1.7) | ||
safe_yaml (~> 1.0) | ||
jekyll-sass-converter (1.4.0) | ||
sass (~> 3.4) | ||
jekyll-watch (1.5.0) | ||
listen (~> 3.0, < 3.1) | ||
kramdown (1.12.0) | ||
liquid (3.0.6) | ||
listen (3.0.8) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
mercenary (0.3.6) | ||
pathutil (0.14.0) | ||
forwardable-extended (~> 2.6) | ||
rb-fsevent (0.9.7) | ||
rb-inotify (0.9.7) | ||
ffi (>= 0.5.0) | ||
rouge (1.11.1) | ||
safe_yaml (1.0.4) | ||
sass (3.4.22) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
jekyll | ||
|
||
BUNDLED WITH | ||
1.12.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# Site settings | ||
title: "Leon Braje" | ||
email: [email protected] | ||
baseurl: "/leon" # the subpath of your site, e.g. /blog/ | ||
url: "https://marauderxtreme.github.io" # the base hostname & protocol for your site | ||
|
||
# Global Metatags | ||
metatag: | ||
de: | ||
description: "" | ||
abstract: | ||
keywords: | ||
"og:title": "" | ||
"og:description": "" | ||
"og:locale": | ||
"og:locale:alternate": | ||
"og:image": | ||
"og:image:secure:url": | ||
"og:type": | ||
"og:site_name": | ||
"og:url": | ||
"og:type": | ||
HandheldFriendly: true | ||
en: | ||
description: "" | ||
abstract: | ||
keywords: | ||
"og:title": "" | ||
"og:description": "" | ||
"og:locale": | ||
"og:ocale-alternate": | ||
"og:image": | ||
"og:secure-url": | ||
"og:type": | ||
"og:site_name": | ||
"og:url": | ||
"og:type": | ||
HandheldFriendly: true | ||
|
||
# Build settings | ||
markdown: kramdown | ||
|
||
gems: | ||
- jekyll | ||
- jekyll-paginate | ||
|
||
exclude: | ||
- .c9 | ||
- .git | ||
- bower_components | ||
- Gemfile | ||
- Gemfile.lock | ||
|
||
permalink: none | ||
|
||
paginate: 5 | ||
paginate_path: "/blog/page:num" | ||
|
||
teaser-length: 500 | ||
|
||
defaults: | ||
- | ||
scope: | ||
path: "" | ||
type: "pages" | ||
values: | ||
layout: "page" | ||
lang: de | ||
i18n: true | ||
- | ||
scope: | ||
path: "" | ||
type: "posts" | ||
values: | ||
layout: "post" | ||
permalink: blog/:path:output_ext | ||
lang: de | ||
i18n: true | ||
- | ||
scope: | ||
path: "" | ||
type: "drafts" | ||
values: | ||
layout: "post" | ||
category: drafts | ||
i18n: true | ||
- | ||
scope: | ||
path: "" | ||
type: "en" | ||
values: | ||
layout: "page" | ||
permalink: en/:path:output_ext | ||
lang: en | ||
i18n: true | ||
- | ||
scope: | ||
path: "" | ||
type: "en-posts" | ||
values: | ||
layout: "post" | ||
permalink: en/blog/:path:output_ext | ||
lang: en | ||
i18n: true | ||
|
||
sass: | ||
sass_dir: _scss | ||
# development setting | ||
style: :expanded | ||
# production setting | ||
# style: :compressed | ||
|
||
collections: | ||
sidebar: {} | ||
en: | ||
output: true | ||
en-posts: | ||
output: true | ||
en-sidebar: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
events: | ||
- | ||
date: 13.11.2016 | ||
date-en: "11/13/2016" | ||
location: Dresden | ||
location-en: Dresden | ||
- | ||
date: 14.11.2016 | ||
date-en: "11/14/2016" | ||
location: Köln | ||
location-en: Cologne | ||
- | ||
date: 15.11.2016 | ||
date-en: "11/15/2016" | ||
location: München | ||
location-en: Munich | ||
- | ||
date: 16.11.2016 | ||
date-en: "11/16/2016" | ||
location: Berlin | ||
location-en: Berlin | ||
- | ||
date: 17.11.2016 | ||
date-en: "11/17/2016" | ||
location: Bremen | ||
location-en: Bremen | ||
- | ||
date: 18.11.2016 | ||
date-en: "11/18/2016" | ||
location: Wien/AT | ||
location-en: Vienna/AT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
groups: | ||
- | ||
type: android | ||
path: /img/icons/android-icon- | ||
sizes: | ||
- 192x192 | ||
- | ||
type: apple | ||
rel: apple-touch-icon | ||
path: /img/icons/apple-touch-icons- | ||
sizes: | ||
- 57x57 | ||
- 60x60 | ||
- 72x72 | ||
- 76x76 | ||
- 114x114 | ||
- 120x120 | ||
- 144x144 | ||
- 152x152 | ||
- 180x180 | ||
- 192x192 | ||
- | ||
type: favicon | ||
path: /img/icons/favicon- | ||
sizes: | ||
- 16x16 | ||
- 32x32 | ||
- 96x96 | ||
- | ||
type: ms | ||
path: /img/icons/ms-icon- | ||
sizes: | ||
- 144x144 | ||
android-manifest: /img/icons/manifest.json | ||
ms-tilecolor: "#FFFFFF" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
default: | ||
pre: | ||
# The following scripts are included in the <head> | ||
- | ||
src: /js/vendor/modernizr.min.js | ||
|
||
post: | ||
# these scripts are included as the last elements in <body> | ||
- | ||
src: /js/vendor/jquery.min.js | ||
- | ||
src: /js/vendor/foundation.min.js | ||
- | ||
src: /js/vendor/slick.min.js | ||
- | ||
src: /js/app.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
index: | ||
- | ||
absolute: true | ||
src: https://placeholdit.imgix.net/~text?txtsize=75&txt=First&w=900&h=300&txttrack=0 | ||
alt: First | ||
- | ||
absolute: true | ||
src: https://placeholdit.imgix.net/~text?txtsize=75&bg=aaaaaa&txtclr=e8117f&txt=Second&w=900&h=300&txttrack=0 | ||
alt: Second | ||
- | ||
absolute: true | ||
src: https://placeholdit.imgix.net/~text?txtsize=75&bg=e8117f&txtclr=aaaaaa&txt=Third&w=900&h=300&txttrack=0 | ||
alt: Third | ||
- | ||
absolute: true | ||
src: https://placekitten.com/900/300 | ||
alt: Kitten | ||
- | ||
absolute: true | ||
src: https://placeholdit.imgix.net/~text?txtsize=75&bg=000000&txtclr=ffffff&txt=Last&w=900&h=300&txttrack=0 | ||
alt: Last |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
default: | ||
head: | ||
- | ||
src: /css/style.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: First | ||
layout: post | ||
author: Leon | ||
--- | ||
|
||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | ||
|
||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | ||
|
||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
title: Events | ||
index: 200 | ||
--- | ||
|
||
<ul class="no-bullet"> | ||
<li> | ||
11/13/2016: Dresden | ||
</li> | ||
<li> | ||
11/14/2016: Cologne | ||
</li> | ||
<li> | ||
11/15/2016: Munich | ||
</li> | ||
<li> | ||
11/16/2016: Berlin | ||
</li> | ||
<li> | ||
11/17/2016: Bremen | ||
</li> | ||
<li> | ||
11/18/2016: Vienna/AT | ||
</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: Videos | ||
index: 400 | ||
--- | ||
|
||
<div class="flex-video widescreen"> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/aiBt44rrslw" frameborder="0" allowfullscreen></iframe> | ||
</div> | ||
<div class="flex-video widescreen"> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/YE7VzlLtp-4" frameborder="0" allowfullscreen></iframe> | ||
</div> | ||
<div class="flex-video widescreen"> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/8cbK06rKXrg" frameborder="0" allowfullscreen></iframe> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Band | ||
layout: page | ||
index: 300 | ||
--- | ||
|
||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | ||
|
||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | ||
|
||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. |
Oops, something went wrong.