From 78edd4087ee903faaa33006e51c5410d55994473 Mon Sep 17 00:00:00 2001 From: Fabien Catteau Date: Tue, 21 May 2013 11:37:04 +0200 Subject: [PATCH] Fix blog index Blog index was empty because it relied on "paginator" and LSI was disabled (on GH Pages). So paginator has been removed and the index now includes every single post. --- _config.yml | 1 - blog/index.html | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/_config.yml b/_config.yml index 2499b1f..4ac98ae 100644 --- a/_config.yml +++ b/_config.yml @@ -1,6 +1,5 @@ auto: true server: true -paginate: 20 pigments: true name: Ruby Lugdunum 2013 description: The French Ruby Conference June, 20th-21st 2013 in Lyon diff --git a/blog/index.html b/blog/index.html index 80375ac..ce76fb3 100644 --- a/blog/index.html +++ b/blog/index.html @@ -2,7 +2,7 @@ layout: blog --- -{% for post in paginator.posts %} +{% for post in site.posts %}