我在玉中有以下内容(例如):
for post, slug in public.posts._data
article
h1= post.title
!= partial("posts/" + slug)
我正在尝试显示JUST第一个最新的帖子(Jekyll这只是'限制:1')
我找不到任何关于此的文件。
答案 0 :(得分:0)
编辑:由于作者建议_data不是数组而是对象。 public.posts._contents
提供了一个有序列表,所以这里是解决方案:
- var post = public.posts._data[public.posts._contents[0].toString().replace('.html', '')]
article
h1= post.title
...