我正试图找出如何显示一个类别(或全部)中的帖子总数。我设想的是下面这样的事情,但不能完全弄清楚。我有没有漏掉医生的东西?

{% for post in site.categories.CAT %}
    ...do some counting
{% endfor %}

posts: {% number_of_posts %}

{% for post in site.categories.CAT %}
    {{ post.title }}
{% endfor %}

最佳答案

# all posts

{{ site.posts | size }}

# posts in one category

{{ site.categories.CAT | size }}

关于ruby - 总职位数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12625113/

10-14 01:17