Jekyll:link next/previous 分类中的帖子

Jekyll: link next/previous sorted posts within a category

我需要生成两个链接到同一类别的下一个和上一个 post 的按钮。帖子按前题 order 和一个整数值排序。

我的解决方案还不够完美。我需要排除第一个 post 的上一个按钮和最后一个 post 的下一个按钮。但是,它不起作用,我不明白为什么。这是我的代码:

{% capture the_cat %}{{page.categories | first}}{% endcapture %}
{%- assign sorted_posts = site.categories[the_cat] | sort: 'order' -%}

{%- for post in sorted_posts -%}
  {% if post.url == page.url %}
    {% assign post_index0 = forloop.index0 %}
    {% assign post_index1 = forloop.index | plus: 1 %}
  {% endif %}
{%- endfor -%}

{%- for post in sorted_posts -%}
  {% if post_index0 == post.order %}
    {% assign prev_post = post %}
  {% endif %}
  {% if post_index1 == post.order %}
    {% assign next_post = post %}
   {% endif %}
{%- endfor -%}

最后...

{%- if prev_post != null -%} ... {%- endif -%}
{%- if next_post != null -%} ... {%- endif -%}

主循环似乎是正确的。在一个排序了 3 post 的类别中,它 returns 1, 2, 3。我该如何修复它?可以只用一个循环来修复,使代码更有效率吗?谢谢!

PD:我成功地使用了这个 plugin,但是这个插件按 date 排序 post,而不是 order

最后,我得到了解决方案:

{%- capture the_cat -%}{{page.categories | first}}{%- endcapture -%}
{%- assign sorted_posts = site.categories[the_cat] | sort: 'order' -%}

{%- for post in sorted_posts -%}
    {%- if post.url == page.url -%}

    {%- assign currIndex = forloop.index0 -%}
    {%- assign prevIndex = currIndex | minus: 1 -%}
    {%- assign nextIndex = currIndex | plus: 1 -%}
    {%- assign articleIndexLength = forloop.length | minus: 1 -%}

    {%- if currIndex == articleIndexLength -%}
        {%- assign prev_post = sorted_posts[prevIndex] -%}
    {%- endif -%}

    {%- if currIndex < articleIndexLength and currIndex != 0 -%}
        {%- assign prev_post = sorted_posts[prevIndex] -%}
        {%- assign next_post = sorted_posts[nextIndex] -%}
    {%- endif -%}

    {%- if currIndex == 0 -%}
        {%- assign next_post = sorted_posts[nextIndex] -%}
    {%- endif -%}

    {%- endif -%}
{%- endfor -%}

我只需要一个包含三个条件的循环。