gpt4 book ai didi

jekyll - 使用Jekyll/液体模板订购阵列

转载 作者:行者123 更新时间:2023-12-04 04:07:14 26 4
gpt4 key购买 nike

我正在尝试执行以下操作。
我使用Jekyll创建帖子列表,并按类别(周一至周日)排序
我想按时间顺序显示它们,但杰基尔按字母顺序对它们进行显示。

有可能和Jekyll一起解决一次婚事吗?

我已在发布Yaml中添加了订单 key 以镜像星期一= 1 ...星期日= 7

我试图然后使用此顺序键对数组进行排序,但它不起作用。

  {% for post in posts_collate  %}
{% capture class %} {{ post.tags | first }} {% endcapture%}
{% capture club %} {{ post.tags | last }} {% endcapture%}

{% if forloop.first %}
<h2>our events</h2>
<h3>{{ class }} & {{ club }}</h3>
<dl>
{% endif %}
{% if post.rel == 'me' %}
<dt>{{ post.category | sort: 'order' }}</dt>
<dd> <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></dd>
{% endif %}

{% if forloop.last %}
</dl>
{% endif %}
{% endfor %}

而且我在大型Google机器上找不到任何信息,因此我不确定它是否可行。

最佳答案

没有插件或自定义功能就无法完成。虽然,正在持续努力以在下一个版本中实现此功能:https://github.com/Shopify/liquid/pull/101,然后看起来像:

{% for tag in site.tags order:ascending %} 
...
{% endfor %}

关于jekyll - 使用Jekyll/液体模板订购阵列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9218769/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com