You can add repeat regions to display your data. A repeat region is a simple data structure that you can format as needed to present your data. For example, if you had a set of photograph thumbnails you want to place one after another within a page layout object such as an AP div element.
Drag one or more elements from the Bindings panel on top of the selected text.
In Code view, type the code for one or more elements directly. Use this format: {dataset-name::element-name}, as in {ds1::category}. or {dsProducts::desc}. If you are only using one data set in your file, or if you are using data elements from the same data set that you defined for the region, you can omit the data set name and simply write {category} or {desc}.
Regardless of which method you use to define the contents of your region, the following lines of code are added to your HTML code:
<div spry:region="ds1">{name}{category}</div> <div spry:region="ds2">{ds1::name}{ds1::descheader}</div>