list
Creates a generic container.
Overview
The list element is a generic element that contains nearly all other elements in the templates that use it. Here’s an example of a list inside of a paradeTemplate. The list element contains the information for the page.
<paradeTemplate>
<list>
<header>
<title>Movie Genres</title>
</header>
<section>
<listItemLockup>
<title>Action</title>
</listItemLockup>
<listItemLockup>
<title>Comedy</title>
</listItemLockup>
</section>
<relatedContent>
<imgDeck>
<img src="path to images on your server/Car_Movie_250x375.png "/>
<img src="path to images on your server/Car_Movie_250x375_A.png "/>
<img src="path to images on your server/Car_Movie_250x375_B.png "/>
<img src="path to images on your server/Car_Movie_250x375_C.png "/>
</imgDeck>
</relatedContent>
</list>
</paradeTemplate>