<vte:foreach> tag is used to loop through the array.
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
<vte:else> (optional)
<vte:foreach item="article" from="{article_list}">
<vte:value select="{article.get_title}" />
</vte:foreach>