vte:foreach

attributes:
from [array] - The array you are looping through
item [integer] - The name of the variable to assign the current array element
loop [integer] - The number of iterations
start [integer] - The number to start from
step [integer] - Step increment, default 1
key [string] - The name of the variable to hold current index
children
vte:else (optional)

vte:foreach tag is used to loop through the array.

Required attributes are from and item.

Example:

<vte:foreach item="article" from="{article_list}">
    <vte:value select="{article.get_title}" />
</vte:foreach>