与 Jekyll 相关的帖子
我想要一个可以显示最多 5 条同一类别的最近帖子的东西。Jekyll 有一个 related_posts 站点变量,但它按标签而不是类别进行过滤,这给我带来了各种奇怪的问题。我巧妙地使用了 liquid 语法1,想出了一个解决方案:
{% unless page.category == null %}
{% capture pageCategory %}{{ page.category }}{% endcapture %}
{% unless site.categories[pageCategory].size == 1 %}
<div class="row related-posts">
<h2 class="text-center">More {{ page.category }} Posts!</h2>
<div class="medium-12 small-12 columns">
{% for post in site.categories[pageCategory] limit:6 %}
{% unless post.title == page.title %}
<h3>
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
</a>
</h3>
{% endunless %}
{% endfor %}
</div>
</div>
{% endunless %}
{% endunless %}