Table of contents
Jekyll-paginate-v2
Tags:
, , ,コレクション、タグ、カテゴリのページネーションも可能なジェネレーター
- Homepage (github.com) [EN]
- Document (rubydoc.info) [EN]
- Pagination(ページ分け)について (jekyllrb-ja)
コレクション、タグ、カテゴリのページネーションも可能なジェネレーター
GitHub Pagesではサポートされていません。
インストール
Gemfileを編集
# Gemfile group :jekyll_plugins do gem 'jekyll-paginate-v2' end
_config.ymlを編集
# _config.yml plugins: - jekyll-paginate-v2
Pluginのインストール
bundle
AutoPages
AutoPages 1 はオプションのページ分割アドオンで、 すべてのコレクション、タグ、カテゴリのページ分割されたページを自動的に 生成できます。 大規模なサイトで、コレクション、タグ、カテゴリリストの内容をページ分割する ことで、より良いユーザーエクスペリエンスを提供する場合に便利です。
Site configuration
############################################################
# Site configuration for the Auto-Pages feature
# The values here represent the defaults if nothing is set
autopages:
# Site-wide kill switch, disable here and it doesn't run at all
enabled: false
# Category pages, omit entire config element to disable
categories:
# Optional, the list of layouts that should be processed for every category found in the site
layouts:
- 'autopage_category.html'
# Optional, the title that each category paginate page should get (:cat is replaced by the Category name)
title: 'Posts in category :cat'
# Optional, the permalink for the pagination page (:cat is replaced),
# the pagination permalink path is then appended to this permalink structure
permalink: '/category/:cat'
slugify:
mode: 'default' # :cat is slugified. Modes: default, raw, pretty, ascii, latin
case: false # Whether to replace all uppercase letters with their lowercase counterparts
# Collection pages, omit to disable
collections:
layouts:
- 'autopage_collection.html'
title: 'Posts in collection :coll' # :coll is replaced by the collection name
permalink: '/collection/:coll'
slugify:
mode: 'default' # :coll is slugified.
case: false
# Tag pages, omit to disable
tags:
layouts:
- 'autopage_tags.html'
title: 'Posts tagged with :tag' # :tag is replaced by the tag name
permalink: '/tag/:tag'
slugify:
mode: 'default' # :tag is slugified.
case: false
Jekyll::Paginate V2::AutoPages(github.com) [EN] ↩
関連プラグイン
- Jekyll-paginate - Jekyllデフォルトのページネーションジェネレーター
ブログ記事
下記に掲載を希望される方はご連絡ください (詳細)
- Jekyll製ブログのカテゴリーページにもページネーションを導入する (changeofpace.site)