我有以下 Jekyll 索引
---
layout: default
title: My favourite sandwiches
---
<section class="home">
{% for post in site.posts %}
<article class="column">
<img src="{{ post.image }}">
<a href="{{ post.url }}">{{ post.title }}</a>
</article>
{% endfor %}
</section>
我的网站将有 3 篇文章(块)彼此相邻,例如图块。
但是,我想在第一篇和第三篇文章标签上添加一个类,以便添加不同的样式。
我想知道如何添加这种行为,以及是否有办法索引某些东西,例如。class="first" if index == 3/1
我想要的 html 看起来像这样
<section class="home">
<article class="column first">
<img src="images/bigsandwich.jpg">
<a href="site.com/post/bigsandwich.html">My big sandwich</a>
</article>
<article class="column">
<img src="images/icecreamsandwich.jpg">
<a href="site.com/post/bigsandwich.html">Icecream sandwich</a>
</article>
<article class="column last">
<img src="images/sushisandwich.jpg">
<a href="site.com/post/sushisandwich.html">Sushi sandwich</a>
</article>
</section>
感谢您的耐心和时间。