Enhances the liquid built-in reverse filter to work with Paginate objects.
When invoked on a Paginate object, it reverses the sorting order of the collection.
The properties by which different objects can be sorted when used in paginations are explicitly documented on each type of object.
{% assign countries = website.countries | sort: 'code' | reverse %}
{% assign last_orders = user.orders | sort: 'created_at' | reverse %}