gpt4 book ai didi

html - Jekyll 中的递增循环计数器

转载 作者:太空宇宙 更新时间:2023-11-04 15:03:10 24 4
gpt4 key购买 nike

所以我试图创建一个页面,在开始时只显示前 10 篇文章。

这样做很简单:

<ul>
{% for post in site.posts limit:10 %}
<li>//show post</li>
{% endfor %}
</ul>

但随后它变得棘手,因为我想添加一个按钮,使接下来的 10 个帖子可见。然后是下 10 个帖子的另一个,直到显示网站上的每个帖子。

基本上,所有帖子都会在索引上生成,因为 jekyll 是静态的。但是第十篇之后的所有内容都会被js和css隐藏。但是,我仍然需要十个十个地生成这些帖子,对吧?

所以我正在尝试做类似的事情

{% for post in site.posts limit:10 offset:9%}
//show post
{% endfor %}

{% for post in site.posts limit:10 offset:19%}
//show post
{% endfor %}

它仍然很糟糕,因为我必须为每十个帖子编写一个循环,所以它非常糟糕。所以基本上我必须创建一个循环,每 10 个帖子创建我的 UL 10 个帖子。归结为,我怎样才能每次都将偏移量加十?我必须使用一个变量,但我不确定这里的语法是如何工作的?

这是我想要的 html 渲染:

<div id="first-ten"> 
// ten posts
</div>

<div id="see-more-1">
// ten posts
</div>

<div id="see-more-2">
// ten posts
</div>

<div id="see-more-3">
// last six posts for instance
</div>

最佳答案

我同意使用 Liquid 是一种奇怪的方式,但只是为了证明它可以做到:

---
---
{% comment %}Constant, can assign in _config.yml or YAML front matter if desired{% endcomment %}
{% assign postsPerPage = 2 %}

{% assign numPages = site.posts | size | divided_by: postsPerPage %}
{% comment %}Sketchy ceiling function since Liquid does integer division{% endcomment %}
{% if site.posts.size | modulo: postsPerPage > 0 %}
{% assign numPages = numPages | plus: 1 %}
{% endif %}
Total pages: {{ numPages }}<br><br>
{% assign endIndex = numPages | minus: 1 %}

{% comment %}Output section{% endcomment %}
{% for pageNum in (0..endIndex) %}
{% assign offset = pageNum | times: postsPerPage %}
<div id="see-more-{{ pageNum }}" style="border-style: inset;">
Page {{ pageNum }}:<br>
<ol>
{% assign posts = site.posts | sort: 'title' %}
{% for post in posts limit: postsPerPage offset: offset %}
<li>{{ post.title }}</li>
{% endfor %}
</ol>
</div>
{% endfor %}

我已经用 1-11 个帖子测试了上面的页面。我尽量把它写得不言自明,所以可能有一些方法可以减少变量/计算的数量。

关于html - Jekyll 中的递增循环计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31523833/

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