ContentList

ContentList allows you to insert a dynamic list of ContentItems anywhere in your site. It can be dropped into any zone using the editor, or it can be built and rendered programmatically in your site template. 

Custom Template

You can enter custom HTML code to use. This is similar to the asp.net Repeater control. The specified HTML is repeated for each item in the ContentList. You can insert tokens between $$...$$ or {{...}} delimiters to substitute item values. For example. You can put $$Name$$ in the HTML if you want to substitute in the Name property of each item.

Formatting strings can be specified by inserting a vertical bar or colon in the token, followed by the .net-compliant format string. The object and format string are passed into String.Format. For example, you can do something like {{Date|MMMM dd, yyyy}} to print a long date.