gpt4 book ai didi

jekyll - 仅显示 Jekyll 中 future 的帖子

转载 作者:行者123 更新时间:2023-12-02 06:30:52 24 4
gpt4 key购买 nike

有没有办法在 Jekyll 中创建一个循环,只显示从今天开始到 future 按时间顺序排列的帖子?我正在为聚会小组创建 GitHub Pages 网站,但我有点陷入困境。

最佳答案

下面的代码可以做到这一点:

{% assign curDate = site.time | date: '%s' %}
{% for post in site.posts %}
{% assign postStartDate = post.date | date: '%s' %}
{% if postStartDate >= curDate %}
Post datas here
{% endif %}
{% endfor %}

但是您需要每天“构建”您的网站,因为 Github 仅在推送到您的存储库时更新。

关于jekyll - 仅显示 Jekyll 中 future 的帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24353638/

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