我们有一个非常基本的Jekyll网站,很多帖子都分为几类。我们正在使用generate categories插件。
我们的类别可在http://fake.com/categories/cat_index
访问从0.12.1升级到1.0.0后,所有类别帖子的网址都为http://fake.com/categories/cat_index/categories/cat_index
我知道版本之间唯一重要的变化是添加了baseUrl暴露给液体模板,但我无法弄清楚这会如何影响后期生成。
搜索此网站和互联网的其他部分我无法找到其他人有类似的错误。我尝试使用不同的类别插件,但出现了同样的错误。
_congig.yml的剥离版本(只是取出了实际的类别/帖子名称以保持客户匿名)
exclude: [Gemfile, Gemfile.lock, Procfile]
safe: false
permalink: /:title
pygments: false
source: .
destination: ./_site
plugins: ./_plugins
relative_permalinks: false
primary_nav:
- label: 'Home'
href: ''
secondary_nav:
# - label: 'Example 1'
# href: link1.html
# - label: 'Example 2'
# href: link2.html
sections:
- key: 'fake'
label: 'Fake'
children:
- key: 'post-title'
label: 'Post Title'
- key: 'fake2'
label: 'Fake2'
children:
- key: 'post-title2'
label: 'Post Title2'
# configs for unwrapped.rb plugin
unwrapped_dest_directory: 'unwrapped'
unwrapped_template_path: '_includes/styleguide'
unwrapped_template_file: 'unwrapped.html'