如何从 Jekyll front matter 中的帖子中找到值的总和

Howto find the sum of values from posts' in Jekyll frontmatter

在我的每个 Jekyll post 中,我在前面列出了一个数字:

---
minutes: X
---

值总是不同于 post-to-post,我想求出所有 post 的总和。

不确定这是否可行或方法应该是什么。

提前感谢您的帮助!

尝试:

{% assign total = 0 %}
{% for post in site.posts %}
  {% assign total = total | plus: post.minutes %}
{% endfor %}
{{ total }}