mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
11 lines
324 B
Smarty
11 lines
324 B
Smarty
<div class="widget">
|
|
<h3>{{$title}}</h3>
|
|
<ul class="nav nav-pills flex-column">
|
|
{{foreach $menu_items as $menu_item}}
|
|
<li class="nav-item">
|
|
<a class="nav-link{{if $menu_item.active}} active{{/if}}" href="{{$menu_item.href}}" title="{{$menu_item.title}}">{{$menu_item.label}}</a>
|
|
<li>
|
|
{{/foreach}}
|
|
</ul>
|
|
</div>
|