duhaime
duhaime

Reputation: 27594

Jekyll / Liquid: Add item to start of list

In Jekyll / Liquid, one can add an item to the end of a list by running:

{% assign list = list | push: item %}

Is there a way to add an item to the start of a list?

Upvotes: 0

Views: 328

Answers (1)

ashmaroli
ashmaroli

Reputation: 5444

Use the unshift filter

{% assign list = list | unshift: item %}

Upvotes: 1

Related Questions