Skip to content

Commit ae36831

Browse files
committed
a Jekyll site
0 parents  commit ae36831

File tree

432 files changed

+11165
-0
lines changed

Some content is hidden

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

432 files changed

+11165
-0
lines changed

.gitignore

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

404.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: Not Found
3+
permalink: /404.html
4+
sitemap: false
5+
---
6+
7+
This page doesn't exist!

CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Contributing
2+
3+
> Contribution Guide from https://github.com/thoughtbot/til
4+
5+
When you learn something,
6+
add a Markdown file to
7+
this repo explaining it in concise terms.
8+
Place the file in a directory
9+
which best describes
10+
the content of the tip.
11+
Create a new directory if no existing one fits.
12+
13+
Open a pull request for review.
14+
15+
For help submitting, just clicking on the new file icon, putting in the content and following the steps to create a Pull Request should work. A more indepth guide should be comming soon.
16+
17+
## Writing a good a TIL
18+
19+
TIL's should be a focused and concise piece of knowledge that's interesting and
20+
worth sharing with others.
21+
22+
Here's some guidelines on how to write a great TIL:
23+
24+
* Avoid writing more than 60 lines of content.
25+
* Avoid writing more than 2 examples.
26+
* Avoid going into too much detail.
27+
28+
If you find TIL straying from these guidelines consider narrowing the scope of
29+
your TIL or writing a blog post on the subject.
30+

Gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'jekyll', '3.3.1'
4+
5+
group :jekyll_plugins do
6+
gem 'jekyll-sitemap', '0.11.0'
7+
gem 'jekyll-seo-tag', '2.0.0'
8+
gem 'jekyll-feed', '0.7.2'
9+
end

Gemfile.lock

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.4.0)
5+
colorator (1.1.0)
6+
ffi (1.9.14)
7+
forwardable-extended (2.6.0)
8+
jekyll (3.3.1)
9+
addressable (~> 2.4)
10+
colorator (~> 1.0)
11+
jekyll-sass-converter (~> 1.0)
12+
jekyll-watch (~> 1.1)
13+
kramdown (~> 1.3)
14+
liquid (~> 3.0)
15+
mercenary (~> 0.3.3)
16+
pathutil (~> 0.9)
17+
rouge (~> 1.7)
18+
safe_yaml (~> 1.0)
19+
jekyll-feed (0.7.2)
20+
jekyll-sass-converter (1.5.0)
21+
sass (~> 3.4)
22+
jekyll-seo-tag (2.0.0)
23+
jekyll (~> 3.1)
24+
jekyll-sitemap (0.11.0)
25+
addressable (~> 2.4.0)
26+
jekyll-watch (1.5.0)
27+
listen (~> 3.0, < 3.1)
28+
kramdown (1.13.1)
29+
liquid (3.0.6)
30+
listen (3.0.8)
31+
rb-fsevent (~> 0.9, >= 0.9.4)
32+
rb-inotify (~> 0.9, >= 0.9.7)
33+
mercenary (0.3.6)
34+
pathutil (0.14.0)
35+
forwardable-extended (~> 2.6)
36+
rb-fsevent (0.9.8)
37+
rb-inotify (0.9.7)
38+
ffi (>= 0.5.0)
39+
rouge (1.11.1)
40+
safe_yaml (1.0.4)
41+
sass (3.4.22)
42+
43+
PLATFORMS
44+
ruby
45+
46+
DEPENDENCIES
47+
jekyll (= 3.3.1)
48+
jekyll-feed (= 0.7.2)
49+
jekyll-seo-tag (= 2.0.0)
50+
jekyll-sitemap (= 0.11.0)
51+
52+
BUNDLED WITH
53+
1.12.5

0 commit comments

Comments
 (0)