带有章鱼束缚的章鱼式章鱼与最新的杰基尔不兼容



我正在尝试使用最新的jekyll集成章鱼 - 义务和章鱼。而且这无法正常工作。

在这种情况下,不可能使用章鱼 ->

来拼写翻译的jekyll页面。

我要实现的目标是在_plugin文件夹中拥有一个.rb文件,以允许基于_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-->

在上面的示例中,我正在用语言过滤帖子,但是Paginator并未通过语言过滤。

这里的目标是能够基于_config.yml文件中的lang标签。

这是可能的吗?

最后,使用此插件可以轻松地实现https://github.com/sverrirs/jekyll-paginate-v2。

而不是章鱼。只是使用而不是名为" lang"标签的标签,称为" locale'。

相关内容

  • 没有找到相关文章

最新更新