So I'm curious to how I would render paragraphs inside a div based on the content I have in a List...
So picture this.
List<string> names = new List<string>
names.add("Foo");
names.add("Bar");
How would I make that generate something along the lines of
<div>
<p>Foo</p>
<p>Bar</p>
</div>