From 65505b00f4ae35688e2645f49080d54c1fa4fe5a Mon Sep 17 00:00:00 2001 From: matrixfox Date: Wed, 8 May 2024 10:51:29 -0700 Subject: [PATCH] Fixed Paginate Issue --- Gemfile | 2 ++ _config.yml | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index f01211b..7d9c27a 100644 --- a/Gemfile +++ b/Gemfile @@ -31,3 +31,5 @@ gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] # Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem # do not have a Java counterpart. gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] + +gem "jekyll-paginate" diff --git a/_config.yml b/_config.yml index 226e5b4..1fef0d6 100644 --- a/_config.yml +++ b/_config.yml @@ -2,5 +2,6 @@ markdown: kramdown rouge: true permalink: pretty paginate: 1 -exclude: ['README.md', 'LICENSE', 'Gemfile', 'Gemfile.lock', 'CNAME', 'config.codekit'] -gems: [jekyll-paginate] \ No newline at end of file +exclude: ['README.md', 'LICENSE', 'Gemfile', 'Gemfile.lock', 'CNAME', 'config.codekit', 'prepros.config'] +gems: [jekyll-paginate] +plugins: [jekyll-paginate] \ No newline at end of file