Search code examples
filesortingdocpad

How to make docpad @document collection sort descending by timestamp


working on my docpad blog, in testing I see sorting is descending by the title, but most blogs are sorted ascending.

How would you suggest solving this?


Solution

  • In docpad.coffee I added

    posts: ->   @getCollection('documents').findAllLive({relativeOutDirPath:'blog'},[timestamp:-1])
    

    and then I add a timestamp to all the markdown files.