I would like to retrieve each gallery category from the gallery module.
currently im doing this in a HTML block:
Code: Select all
<div id="preloadimages">
{Gallery dir='parentdir/subdir1'}
{Gallery dir='parentdir/subdir2'}
</div>
Code: Select all
<div id="preloadimages">
{foreach from=$galleries item=gallery}
{Gallery dir='$gallery->parentdir/$gallery->subdir'}
{/foreach}
</div>
Thanks!
Red.