friendica-github/view/templates/common_tabs.tpl

13 lines
477 B
Smarty
Raw Normal View History

2024-08-24 18:23:27 +00:00
{{*
* Copyright (C) 2010-2024, the Friendica project
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*}}
<ul role="menubar" class="tabs">
2013-04-23 11:47:57 +00:00
{{foreach $tabs as $tab}}
2015-08-08 15:33:43 +00:00
<li role="menuitem" id="{{$tab.id}}"><a href="{{$tab.url}}" {{if $tab.accesskey}}accesskey="{{$tab.accesskey}}"{{/if}} class="tab button {{$tab.sel}}"{{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li>
2013-04-23 11:47:57 +00:00
{{/foreach}}
</ul>