如何在自定义 get data 情况下获取 posts.category.content
您好!
在每个文件夹目录下放置 index.md,里面写的东西可以用 posts.category.content 调用,如果自定义 get data 的话,要如何调用呢?
entries = d.get\_data(types='post', limit=1000, sort='desc').group('path:parent\_path')
for category, cat\_posts in entries
header
h2= category
span= d.get\_data(types='post', path=category, return\_count=true, with\_page=false)
ul: for post in cat\_posts: li
time(datetime= post.date.format('%Y-%m-%d'))= post.date.format('%m.%d')
a(href=post.url)= post.title
谢谢!
同理,请问 index.md 里的 title 又要如何调用呢?谢谢!
@Shui Baco, category_doc = d.get_doc(category_path)