mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
11 lines
No EOL
311 B
Smarty
11 lines
No EOL
311 B
Smarty
{if isset($tabsheet) and count($tabsheet)}
|
|
<div id="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>
|
|
</div>
|
|
{/if} |