Liquid sort 排序

{{ my_array | sort }}
{{ my_array | sort | reverse }}

例如在 Jekyll 中按文章的日期排序

{% assign sorted_posts = site.posts | sort:"date" %}