Skip to content

Commit fae0fa1

Browse files
committed
Fix jekyll setup
1 parent 7708c40 commit fae0fa1

File tree

6 files changed

+56
-0
lines changed

6 files changed

+56
-0
lines changed

.bundle/config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
BUNDLE_PATH: bundle
3+
BUNDLE_DISABLE_SHARED_GEMS: '1'

.gitignore

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

Gemfile

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

Gemfile.lock

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
colorator (0.1)
5+
ffi (1.9.10)
6+
jekyll (3.1.1)
7+
colorator (~> 0.1)
8+
jekyll-sass-converter (~> 1.0)
9+
jekyll-watch (~> 1.1)
10+
kramdown (~> 1.3)
11+
liquid (~> 3.0)
12+
mercenary (~> 0.3.3)
13+
rouge (~> 1.7)
14+
safe_yaml (~> 1.0)
15+
jekyll-redirect-from (0.9.1)
16+
jekyll (>= 2.0)
17+
jekyll-sass-converter (1.4.0)
18+
sass (~> 3.4)
19+
jekyll-watch (1.3.1)
20+
listen (~> 3.0)
21+
kramdown (1.9.0)
22+
liquid (3.0.6)
23+
listen (3.0.6)
24+
rb-fsevent (>= 0.9.3)
25+
rb-inotify (>= 0.9.7)
26+
mercenary (0.3.5)
27+
rb-fsevent (0.9.7)
28+
rb-inotify (0.9.7)
29+
ffi (>= 0.5.0)
30+
rouge (1.10.1)
31+
safe_yaml (1.0.4)
32+
sass (3.4.21)
33+
34+
PLATFORMS
35+
ruby
36+
37+
DEPENDENCIES
38+
jekyll
39+
jekyll-redirect-from
40+
41+
BUNDLED WITH
42+
1.10.6

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
gems:
22
- jekyll-redirect-from
3+
exclude:
4+
- bundle

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
---
12
title: PyCon Philippines
23
redirect_to:
34
- https://pycon.python.ph
5+
---

0 commit comments

Comments
 (0)