我加了 jekyll-archives 插件重写了blog的一些页面逻辑。稍微记录一下。
官方地址: https://github.com/jekyll/jekyll-archives
安装
gem 'jekyll-archives'
在 _config.yml
中增加:
plugins:
- jekyll-archives
更多配置参考 https://github.com/jekyll/jekyll-archives/blob/master/docs/configuration.md
以下是我的配置(我的layout文件是 tags.html):
plugins:
- jekyll-archives
jekyll-archives:
enabled: ['tags']
layout: tags
permalinks:
tag: '/tags/:name.html'
安装
bundle install