What is the best way to create two dynamic unordered lists in Drupal 6.x using Views? I know how to create one dynamic list in Views but not two. I also know that one can create two separate blocks to create this output, but I do not know how to make the blocks dynamic.
Example Gallery:
// Fullsize Images
<ul class="gallery-output">
<li><img src="example.png" /></li>
<li><img src="example-two.png" /></li>
</ul>
// Thumbnail Images
<ul class="gallery-nav">
<li><a href="#"><img src="example_thumb.png" /></a></li>
<li><a href="#"><img src="example-two_thumb.png" /></a></li>
</ul>
This is for a Realtor site and I would like to be able to have this output at the start over every property to display all of its photos (in a nice and neat way!).
Any help would be greatly appreciated.