mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
17 lines
435 B
Plaintext
17 lines
435 B
Plaintext
<c:for each="item in ['a', 'b', 'c']" iterator="data.reverseIterator">
|
|
${item}
|
|
</c:for>
|
|
|
|
|
|
<c:for each="item in ['a', 'b', 'c']" iterator="data.reverseIterator" status-var="status">
|
|
${status.index}-${item}
|
|
</c:for>
|
|
|
|
<div c:for="item in ['a', 'b', 'c']; iterator=data.reverseIterator">
|
|
${item}
|
|
</div>
|
|
|
|
|
|
<div c:for="item in ['a', 'b', 'c']; iterator=data.reverseIterator; status-var=status">
|
|
${status.index}-${item}
|
|
</div> |