Times
The loop type times simply repeats the content a given number of times.
<Loop times=5>
A
</Loop>
The above will show: AAAAA.
Use the loop variable type to get the current loop count.
<Loop times=5>
<Get loop=count />
</Loop>
The above will show: 12345.