Is it possible to get elements in reverse order.
So right now the typical velocity foreach goes like this:
<ol style="list-style: decimal!important;">
#foreach ($i in $item.siblings)
<li>$i.data</li>
#end
</ol>
Output:
- One
- Two
- Three
- Four
But I would like to get the output reverse, like:
- Four
- Three
- Two
- One
If $item.siblings is implementation of List you can try