<% site.posts.sort('date', -1).limit(5).each(function(post){ %>
<li>
<a href="<%- url_for(post.path) %>"><%= post.title || '(no title)' %></a>
</li>
<% }) %>
hexo 主题用 ejs 写的,我想改成 nunjucks 模板引擎,请问上面这段循环怎么用 nunjucks 写,我看了下官网,好象没有 each 循环
https://mozilla.github.io/nunjucks/cn/templating.html