I have a question regarding the Gallery Module. I have the following template:
Code: Select all
<ul>
{assign var='g_prevdepth' value=1}
{foreach from=$images item=image name=img}
{if $image->depth > $g_prevdepth}
{repeat string="<ul>" times=$image->depth-$g_prevdepth}
{elseif $image->depth < $g_prevdepth}
{repeat string="</li></ul>" times=$g_prevdepth-$image->depth}
</li>
{elseif $smarty.foreach.img.index > 0}</li>
{/if}
<li>{$gallerydate}
<a href="{$image->file}" title="{$image->titlename}"><img src="{$image->thumb|escape:'url'|replace:'%2F':'/'|replace:'thumb_':''}" alt="{$image->titlename}" /></a>
<a href="{$image->file}" title="{$image->titlename}">Klik om te lezen</a>
{$image->comment}
{assign var='g_prevdepth' value=$image->depth}
{/foreach}
{repeat string="</li></ul>" times=$image->depth-1}</li>
</ul>Code: Select all
<ul></ul>
<li><a></a></li>
<li><a></a></li>Code: Select all
<ul>
<li><a></a></li>
<li><a></a></li>
</ul>Joep

