1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00
piwigo_ynh/sources/admin/themes/default/template/tabsheet.tpl
2014-07-06 13:21:10 +02:00

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}