blob: b70b3c3f2c30b7fbd4dba403e4ad76fc08d75fea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{strip}
<div class="display fisheye">
<div class="header">
<h1>{tr}Image Galleries{/tr}</h1>
</div>
<div class="body">
<table class="table data">
<tr>
<th><a href="{$smarty.const.FISHEYE_PKG_URL}browse.php?offset={$offset}&sort_mode={if $sort_mode eq 'title_desc'}title_asc{else}title_desc{/if}">{tr}Gallery Name{/tr}</a></th>
</tr>
{section name=ix loop=$galleryList}
<tr>
<td>{$galleryList[ix].title|escape}</td>
</tr>
{/section}
</table>
</div> <!-- end .body -->
</div> <!-- end .fisheye -->
{/strip}
|