html For循环,在div中包含每两个帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html For循环,在div中包含每两个帖子相关的知识,希望对你有一定的参考价值。

{% assign current_page_posts = paginator.posts | size %}

{% if current_page_posts > 0 %}
  <div>

    <div>
      {% for post in paginator.posts %}
        {% if forloop.index == 1 %}
          <a href="{{ post.url }}">{{ post.title }}</a>
        {% endif %}

        {% if forloop.index == 2 %}
          <a href="{{ post.url }}">{{ post.title }}</a>
        {% endif %}
      {% endfor %}
    </div>

    {% if current_page_posts > 2 %}
      <div>
        {% for post in paginator.posts %}
          {% if forloop.index == 3 %}
            <a href="{{ post.url }}">{{ post.title }}</a>
          {% endif %}

          {% if forloop.index == 4 %}
            <a href="{{ post.url }}">{{ post.title }}</a>
          {% endif %}
        {% endfor %}
      </div>
    {% endif %}

  </div>
{% endif %}

以上是关于html For循环,在div中包含每两个帖子的主要内容,如果未能解决你的问题,请参考以下文章

Next.js - 预期的服务器 HTML 在 <div> 中包含匹配的 <div>

在 for 循环 r markdown 中包含两个变量之间的空格(pdf 输出)

5,v-for循环

Windows CMD:循环FOR,其路径中包含空格的文件

循环浏览 WordPress 帖子,并将每个 X 帖子包装在 DIV [重复]

在(foreach)循环中向第一个 div 添加一个类