Im interested in writting something similar to a nested loop using StringTemplate template engine. In C# have a HashTable of which each Key contains List of Document objects, each Document has a title and source. I would like to list at the beggining of an email, a summary of the document titles per source.
<h1>Summary</h1>
<h2>Source A</h2>
<ul>
<li>title 1</li>
<li>title 2</li>
</ul>
<h2>Source B</h2>
<ul>
<li>title 3</li>
<li>title 4</li>
</ul>
What is the best way to accomplish this with StringTemplate?