mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
10 lines
295 B
Smarty
10 lines
295 B
Smarty
{* $Id$ *}
|
|
{if isset($tabsheet) and count($tabsheet)}
|
|
<ul class="tabsheet">
|
|
{foreach from=$tabsheet key=name item=sheet}
|
|
<li class="{if ($name == $tabsheet_selected)}selected_tab{else}normal_tab{/if}">
|
|
<a href="{$sheet.url}"><span>{$sheet.caption}</span></a>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
{/if} |