Skip to content

Commit fea2c38

Browse files
committed
Add build config for jekyll + netlify
https://www.netlify.com/blog/2017/05/11/migrating-your-jekyll-site-to-netlify/ Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
1 parent eeb5ea8 commit fea2c38

File tree

5 files changed

+76
-2
lines changed

5 files changed

+76
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
coverage.txt
33
profile.out
44
containerd.test
5+
_site/

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
gem "jekyll"
3+
gem "jekyll-redirect-from"
4+
gem "jekyll-seo-tag"

Gemfile.lock

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.0.5)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.5)
12+
ffi (1.9.18)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (0.9.1)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (3.7.0)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 0.7)
22+
jekyll-sass-converter (~> 1.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 1.14)
25+
liquid (~> 4.0)
26+
mercenary (~> 0.3.3)
27+
pathutil (~> 0.9)
28+
rouge (>= 1.7, < 4)
29+
safe_yaml (~> 1.0)
30+
jekyll-redirect-from (0.13.0)
31+
jekyll (~> 3.3)
32+
jekyll-sass-converter (1.5.1)
33+
sass (~> 3.4)
34+
jekyll-seo-tag (2.4.0)
35+
jekyll (~> 3.3)
36+
jekyll-watch (2.0.0)
37+
listen (~> 3.0)
38+
kramdown (1.16.2)
39+
liquid (4.0.0)
40+
listen (3.1.5)
41+
rb-fsevent (~> 0.9, >= 0.9.4)
42+
rb-inotify (~> 0.9, >= 0.9.7)
43+
ruby_dep (~> 1.2)
44+
mercenary (0.3.6)
45+
pathutil (0.16.1)
46+
forwardable-extended (~> 2.6)
47+
public_suffix (3.0.1)
48+
rb-fsevent (0.10.2)
49+
rb-inotify (0.9.10)
50+
ffi (>= 0.5.0, < 2)
51+
rouge (3.1.0)
52+
ruby_dep (1.5.0)
53+
safe_yaml (1.0.4)
54+
sass (3.5.4)
55+
sass-listen (~> 4.0.0)
56+
sass-listen (4.0.0)
57+
rb-fsevent (~> 0.9, >= 0.9.4)
58+
rb-inotify (~> 0.9, >= 0.9.7)
59+
60+
PLATFORMS
61+
ruby
62+
63+
DEPENDENCIES
64+
jekyll
65+
jekyll-redirect-from
66+
jekyll-seo-tag
67+
68+
BUNDLED WITH
69+
1.16.1

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ safe: false
1010
lsi: false
1111
exclude: [README.md]
1212

13-
gems:
13+
plugins::
1414
- jekyll-redirect-from
1515
- jekyll-seo-tag
1616

docs/_includes/links.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<div class="link">
2-
<a href="https://github.com/containerd/containerd"><img src="/images/containerd-light-d.png"/></a>
2+
<a href="https://github.com/containerd/containerd"><img src="images/containerd-light-d.png"/></a>
33
</div>

0 commit comments

Comments
 (0)