我正在尝试使用最新的Jekyll整合octopress-multilingual和octopress-paginate。这不能正常工作。
在这种情况下,无法使用octopress-paginate对已翻译的jekyll页面进行分页。
我想要实现的是在_plugin文件夹中有一个.rb文件,以允许paginate,即基于_config.yml文件中定义的全局变量的帖子。这是使用ruby方法alias_method来覆盖当前行为。
_config.yml(extract)
lang: en
_plugins / .yml(摘录)
module Octopress
module Paginate
def paginate(page)
defaults = DEFAULT.merge(page.site.config['pagination'] || {})
if page.data['paginate'].is_a? Hash
page.data['paginate'] = defaults.merge(page.data['paginate'])
else
page.data['paginate'] = defaults
end
if tag = Jekyll.configuration({})['lang']
page.data['paginate']['tags'] = Array(tag)
end
if category = page.data['paginate']['category']
page.data['paginate']['categories'] = Array(category)
end
old_paginate(page)
end
alias_method :old_paginate, :paginate
end
end
这是我的布局: _pages / news.html(摘录)
---
layout: default
title: news
permalink: /latest/news/
paginate:
collection: posts
per_page: 4 # maximum number of items per page
limit: false
permalink: :num/ # pagination path (relative to template page)
---
<!-- Page code goes here-->
{% assign news = paginator.posts | where:'category', 'articles' | where:'lang', site.lang %}
{% for post in news %}
<!-- News code goes here-->
{% endfor %}
<!-- Page code goes here-->
{% for page in (1..paginator.total_pages) %}
<!-- Paginator code goes here-->
{% endfor %}
<!-- Page code goes here-->
在上面的示例中,我按语言过滤帖子,但分页符不按语言过滤。
此处的目标是能够根据_config.yml文件中的lang标记对帖子进行分页。
这可能吗?
答案 0 :(得分:0)
最后,使用此插件https://github.com/sverrirs/jekyll-paginate-v2可以轻松实现这一目标。
而不是章鱼之一。只需使用名为'lang'的标签代替称为'locale'的标签。