这里是什么,我想实现一些伪代码:
for year in post.date
h1 year
for month in post.date
h2 month
ul
li post entry
这是伪代码。 不过,我没有足够的经验来实现这一目标。 其中这会发生的文件是这一个: https://github.com/Greduan/eduantech.docpad/blob/master/src/documents/posts.html.eco
这将是在生态语言。 我使用Moment.js以及万一这是必要的。
即使你没有提供确切的代码,一般的方向将非常赞赏。 :)
编辑:我想什么来实现类似于这样: http://swannodette.github.io/archive.html
编辑2:下面是一些我想出的代码:
for post in @getCollection('posts').toJSON()
for year in post.date
h1 @moment(post.date).format('YYYY')
for month in post.date
h2 @moment(post.date).format('MMMM')
ul ->
li ->
@postDatetime(post.date, 'll') + ' » '
a href:'post.url', post.title
现在它只是输出什么。 所以我想我只是得到了一些变量名错了,我想像我做的。 我感谢所有帮助。 :)
BTW不要担心@postDatetime
功能。 与之配合没有问题,别的地方。 :)