Order an array with Jekyll / liquid template

后端 未结 3 445
温柔的废话
温柔的废话 2021-01-17 23:46

I\'m trying to do the following. I use Jekyll to create a list of posts, and ordertem by category (monday...sunday) I\'d like to have them displayed in chronological order b

3条回答
  •  有刺的猬
    2021-01-18 00:11

    simply add reversed in the for statement

     {% for post in site.posts reversed %}
       ...
     {% endfor %}
    

提交回复
热议问题