Tag List Code Sample
Here is some example code and CSS to build a tag list page for the blog. This is just an example and you have the flexibility to lay out the page to suit your own design.
Below is a screenshot of the layout that this code will build.
HTML:
Below is the HTML / Branch code that would go in the Template field for the Tag List content template.
<h1>Tags</h1>
{loop items="#tags" value="tag"}
<a href="{#tag.url}">{#tag.tagName}</a>,
{/loop}