This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/view/tpl/common_tabs.tpl
2012-12-28 22:54:56 -08:00

6 lines
253 B
Smarty

<ul class="tabs">
{{ for $tabs as $tab }}
<li {{ if $tab.id }}id="$tab.id"{{ endif }}><a href="$tab.url" class="tab button $tab.sel"{{ if $tab.title }} title="$tab.title"{{ endif }}>$tab.label</a></li>
{{ endfor }}
</ul>
<div class="tabs-end"></div>