{* PULL THE PERMANENT GALLERIES FROM THE DATABASE *}
{galleries
var=$galleries
type=permanent
format=any
getnew=true
allowused=false
description=true
preview=true
amount=5
previewsize=125x162
category=MIXED
sponsor=any
order=RAND()
reorder=RAND()}
<table align="center" cellpadding="5" border="0">
<tr>
{* DISPLAY ALL OF THE GALLERIES *}
{foreach var=$gallery from=$galleries counter=$counter}
<td><a href="{$gallery.gallery_url|htmlspecialchars}" target="_blank"><img src="{$gallery.preview_url|htmlspecialchars}" border="0" alt="Thumb"></a>
</td><td>{$gallery.keywords|htmlspecialchars}<br>
{$gallery.description|htmlspecialchars}<br>
{$gallery.preview_url|htmlspecialchars}<br>
<br><br><br><br></td>
{insert counter=$counter location=+1 max=4}
</tr><tr>
{/insert}
{/foreach}
</tr>
</table>
|