From 5c4932e6847bb53957866973ba343bd4a31ce3e1 Mon Sep 17 00:00:00 2001 From: Wendell <105543343+XiaoWendell@users.noreply.github.com> Date: Sun, 17 Nov 2024 14:54:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20jekyll-paginate=20?= =?UTF-8?q?=E6=8F=92=E4=BB=B6=E4=BB=A5=E6=94=AF=E6=8C=81=E5=88=86=E9=A1=B5?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=B9=B6=E5=88=9B=E5=BB=BA=20Gemfil?= =?UTF-8?q?e=20=E5=92=8C=20Gemfile.lock=20=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Gemfile | 5 +++++ Gemfile.lock | 13 +++++++++++++ _config.yml | 2 ++ 3 files changed, 20 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..91f41bd --- /dev/null +++ b/Gemfile @@ -0,0 +1,5 @@ +source "https://rubygems.org" + +gem 'jekyll', '~> 4.3' +gem 'jekyll-paginate' # 如果你需要分页功能 +gem 'wdm', '>= 0.1.0', :platforms => [:mswin, :mingw] # Windows上的文件监视 diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..2590edd --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,13 @@ +GEM + specs: + jekyll-paginate (1.1.0) + +PLATFORMS + x64-mingw-ucrt + +DEPENDENCIES + jekyll-paginate + wdm (>= 0.1.0) + +BUNDLED WITH + 2.5.23 diff --git a/_config.yml b/_config.yml index 55857b1..96768f8 100644 --- a/_config.yml +++ b/_config.yml @@ -40,6 +40,8 @@ anchorjs: true # if you want to customize anchor. check # Gems # from PR#40, to support local preview for Jekyll 3.0 gems: [jekyll-paginate] +plugins: + - jekyll-paginate