Skip to content

Commit

Permalink
Convert to Jekyll source (fixes #3)
Browse files Browse the repository at this point in the history
  • Loading branch information
cewilliams committed Mar 19, 2016
1 parent 83a092e commit eaf8294
Show file tree
Hide file tree
Showing 230 changed files with 45,312 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Gemfile
@@ -0,0 +1,5 @@
source 'https://rubygems.org'

gem 'jekyll', '3.0.2'
gem 'jekyll-gist'
gem 'jekyll-paginate'
53 changes: 53 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,53 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.3.8)
colorator (0.1)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
ffi (1.9.10)
jekyll (3.0.2)
colorator (~> 0.1)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 3.0)
mercenary (~> 0.3.3)
rouge (~> 1.7)
safe_yaml (~> 1.0)
jekyll-gist (1.4.0)
octokit (~> 4.2)
jekyll-paginate (1.1.0)
jekyll-sass-converter (1.4.0)
sass (~> 3.4)
jekyll-watch (1.3.1)
listen (~> 3.0)
kramdown (1.9.0)
liquid (3.0.6)
listen (3.0.5)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
mercenary (0.3.5)
multipart-post (2.0.0)
octokit (4.2.0)
sawyer (~> 0.6.0, >= 0.5.3)
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.10.1)
safe_yaml (1.0.4)
sass (3.4.21)
sawyer (0.6.0)
addressable (~> 2.3.5)
faraday (~> 0.8, < 0.10)

PLATFORMS
ruby

DEPENDENCIES
jekyll (= 3.0.2)
jekyll-gist
jekyll-paginate

BUNDLED WITH
1.10.6
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014 Moritz »mo.« Sauer // Phlow.de

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 4 additions & 2 deletions README.md
@@ -1,5 +1,7 @@
# InnerSource Commons

This repo primarily serves to host the pages for InnerSource Commons. There's not much to be done in this branch yet.
This repo primarily serves to host the pages for InnerSource Commons. The master branch holds the source and the gh-pages branch holds the [Jekyll](https://jekyllrb.com/) rendered output.

If you'd like to add your case study to the collection, you'll want to switch to the gh-pages branch.
## Contributing

TODO: Add contributing guidelines.
247 changes: 247 additions & 0 deletions _config.yml
@@ -0,0 +1,247 @@
# ASCII-Font › http://patorjk.com/software/taag/#p=display&f=Slant&t=Phlow
#
# _____ _ __ _____ __ __ _
# / ___/(_) /____ / ___/___ / /_/ /_(_)___ ____ ______
# \__ \/ / __/ _ \ \__ \/ _ \/ __/ __/ / __ \/ __ `/ ___/
# ___/ / / /_/ __/ ___/ / __/ /_/ /_/ / / / / /_/ (__ )
# /____/_/\__/\___/ /____/\___/\__/\__/_/_/ /_/\__, /____/
# /____/
#
# Title of your website
title: 'InnerSource Commons'

# The slogan describes your website and is used on homepage in <title> and other important places
slogan: 'The journey is the reward'

# The description is used on homepage and in the footer to quickly describe your website. Use a maximum of 150 characters for SEO-purposes.
description: 'InnerSource applies the lessons of Open Source to all software engineering, using collaboration and transparency to increase quality, speed, and developer joy'

# The credits show up in the includes/_footer.html – It would be nice of you to leave a link to Phlow or Feeling Responsive as a thank you :)
credits: '<p>Maintained by <a href="https://paypal.github.io/">PayPal</a> and the InnerSource community.</p>'

# Main author of the website
# See > authors.yml
author: cewilliams

# This URL is the main address for absolute links. Don't include a slash at the end.
#
url: ''
baseurl: ''

# This is for the editing function in _/includes/improve_content
# Leave it empty if your site is not on GitHub/GitHub Pages
improve_content: https://github.com/paypal/InnerSourceCommons/edit/gh-pages

# This URL points directly to the images directory making
# things easier to link to images in posts and templates. It needs a slash at the end.
#
# Example: <img src="{{ site.urlimg }}{{ post.image.title }}" />
# Markdown-Example for posts ![Image Text]({{ site.urlimg }}image.jpg)
#
urlimg: 'https://paypal.github.io/InnerSourceCommons/images/'


# Logo size is 600x80 pixels
logo: "logo.png"


# ____ _ __ _
# / __ \____ _____ _(_)___ ____ _/ /_(_)___ ____
# / /_/ / __ `/ __ `/ / __ \/ __ `/ __/ / __ \/ __ \
# / ____/ /_/ / /_/ / / / / / /_/ / /_/ / /_/ / / / /
# /_/ \__,_/\__, /_/_/ /_/\__,_/\__/_/\____/_/ /_/
# /____/
#
gems:
- jekyll-gist
- jekyll-paginate
paginate: 5 # Paginates all X entries
paginate_path: "blog/page:num" # Pagination path › Important for blog page in /blog/ to work




# Theme works best with Kramdown (using the table of contents function)
markdown: kramdown
permalink: /:categories/:title/
highlight: rouge
excerpt_separator: "<!--more-->"
include: ['.htaccess']
# Exclude these files from your production _site
exclude:
- .sass-cache
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- INSTALL.md


# The language setting is used in /includes/header.html for html-settings
language: 'en'


# Used › default.html front-matter and compress.html
# Options › http://jch.penibelst.de
compress_html:
clippings: all
comments: ["<!-- ", " -->"]
endings: all
profile: false
ignore:
envs: [development]


#
# ____ ____ ____
# / __ \___ / __/___ ___ __/ / /_
# / / / / _ \/ /_/ __ `/ / / / / __/
# / /_/ / __/ __/ /_/ / /_/ / / /_
# /_____/\___/_/ \__,_/\__,_/_/\__/
#
# Default Settings

defaults:
-
scope:
path: '' # an empty string here means all files in the project
type: 'pages'
values:
show_meta: false # Hide metadata for all pages
# sidebar: # Possible values › left, right › by default there will be no sidebar
comments: false
author: cewilliams # Default author for pages
-
scope:
path: ''
type: 'posts'
values:
show_meta: true # Show metadata for all posts
# sidebar: # Possible values › left, right › by default there will be no sidebar
comments: false
author: cewilliams # Default author for posts



# _ __ _ __ _
# / | / /___ __ __(_)___ _____ _/ /_(_)___ ____
# / |/ / __ `/ | / / / __ `/ __ `/ __/ / __ \/ __ \
# / /| / /_/ /| |/ / / /_/ / /_/ / /_/ / /_/ / / / /
# /_/ |_/\__,_/ |___/_/\__, /\__,_/\__/_/\____/_/ /_/
# /____/
#
# Open _data/navigation.yml to adjust the left and right topbar navigation
#



# _____ __________
# / ___// ____/ __ \
# \__ \/ __/ / / / /
# ___/ / /___/ /_/ /
# /____/_____/\____/ Verify Website to Webmaster Tools

# google_author: 'https://plus.google.com/u/0/118311555303973066167'
# google_site_verification: 'Vk0IOJ2jwG_qEoG7fuEXYqv0m2rLa8P778Fi_GrsgEQ'
# bing_webmastertools_id: '0FB4C028ABCF07C908C54386ABD2D97F'
# alexa_verify_id: ''



# ______ _
# / ____/___ __ __(_)________ ____ _____
# / /_ / __ `/ | / / / ___/ __ \/ __ \/ ___/
# / __/ / /_/ /| |/ / / /__/ /_/ / / / (__ )
# /_/ \__,_/ |___/_/\___/\____/_/ /_/____/ Favicon-Crap: Favicons, Chrome, Android & Apple Touch Buttons
# More information » https://mathiasbynens.be/notes/touch-icons

favicon-32x32: 'favicon-32x32.png'
touch-icon-192x192: 'isc-logo-192.png'
apple-touch-icon-180x180-precomposed: 'isc-logo-180.png'
apple-touch-icon-152x152-precomposed: 'isc-logo-152-precomposed.png'
apple-touch-icon-144x144-precomposed: 'isc-logo-144-precomposed.png'
apple-touch-icon-120x120-precomposed: 'isc-logo-120-precomposed.png'
apple-touch-icon-114x114-precomposed: 'isc-logo-114-precomposed.png'
apple-touch-icon-76x76-precomposed: 'isc-logo-76-precomposed.png'
apple-touch-icon-72x72-precomposed: 'isc-logo-72-precomposed.png'
apple-touch-icon-precomposed: 'logo.png'
msapplication_tileimage: 'isc-logo-144.png' # Size 144x144
msapplication_tilecolor: '#fabb00'


# ______ __ __
# / ____/___ _________ / /_ ____ ____ / /__
# / /_ / __ `/ ___/ _ \/ __ \/ __ \/ __ \/ //_/
# / __/ / /_/ / /__/ __/ /_/ / /_/ / /_/ / ,<
# /_/ \__,_/\___/\___/_.___/\____/\____/_/|_| Facebook-Optimization › http://j.mp/fb_optimize

# og_image: 'http://images.phlow.de/phlow/phlow_de-logo-512x.png'
# og_locale: 'en_EN'
# og_type: 'website'


# _____ _ __ __ ___ ___
# / ___/____ _____(_)___ _/ / / |/ /__ ____/ (_)___ _
# \__ \/ __ \/ ___/ / __ `/ / / /|_/ / _ \/ __ / / __ `/
# ___/ / /_/ / /__/ / /_/ / / / / / / __/ /_/ / / /_/ /
# /____/\____/\___/_/\__,_/_/ /_/ /_/\___/\__,_/_/\__,_/
#
# Open _data/socialmedia.yml to adjust the left and right topbar navigation
#

socialmedia:
twitter: PayPalFLOW
# facebook: phlow.media


# ____ _
# / __ \(_)________ ___ _______
# / / / / / ___/ __ `/ / / / ___/
# / /_/ / (__ ) /_/ / /_/ (__ )
# /_____/_/____/\__, /\__,_/____/
# /_/
#
# used in _includes/comments

# disqus_shortname: feelingresponsive


# _____
# / ___/____ ___________
# \__ \/ __ `/ ___/ ___/
# ___/ / /_/ (__ |__ ) More › http://sass-lang.com/
# /____/\__,_/____/____/ More › http://jekyllrb.com/docs/assets/#sassscss
#

sass:
sass_dir: _sass
style: :compressed


# ___ __ __ _
# / | ____ ____ _/ /_ __/ /_(_)_________
# / /| | / __ \/ __ `/ / / / / __/ / ___/ ___/
# / ___ |/ / / / /_/ / / /_/ / /_/ / /__(__ )
# /_/ |_/_/ /_/\__,_/_/\__, /\__/_/\___/____/ https://www.google.com/analytics/
# /____/
#
# used in _includes/footer_scripts

# google_analytics_tracking_id: UA-60112281-1



# _ _ _
# | |_ __ ___ _| | __| |_ ___
# | __/ _` \ \ /\ / / |/ /| __/ _ \
# | || (_| |\ V V /| < | || (_) |
# \__\__,_| \_/\_/ |_|\_(_)__\___/ More › https://www.tawk.to/knowledgebase/
#
# tawk.to is a free live chat app that lets you monitor and chat
# with visitors on your website or from a free customizable page
#
# To load the script add tawkto: true in front matter of each page
#
# used in _includes/footer_scripts

# tawkto_embed_uri:
26 changes: 26 additions & 0 deletions _config_dev.yml
@@ -0,0 +1,26 @@
#
# 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'
baseurl: ''
urlimg: 'http://localhost:4000/images/'

# See › https://github.com/jekyll/jekyll-gist#disabling-noscript-support
gist:
noscript: false

sass:
# http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
style: :expanded
line_numbers: true
# trace_selectors: true
# debug_info: true
# FUTURE https://github.com/jekyll/jekyll-sass-converter/issues/12
sourcemap: true

# Disable when not in production
google_analytics_tracking_id:
16 changes: 16 additions & 0 deletions _data/authors.yml
@@ -0,0 +1,16 @@
# Author details
#
# 1. Edit information below
# 2. Change site author in config.yml
# 3. Change default post/page authors in config.yml
#
# Resource › http://blog.sorryapp.com/blogging-with-jekyll/2014/02/06/adding-authors-to-your-jekyll-site.html

cewilliams:
name: "Cedric Williams"
siterole: "webmaster, copywriter, designer"
uri:
email:
twitter: "@AskCedricW"

# you can add more authors here

0 comments on commit eaf8294

Please sign in to comment.