mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
11 lines
348 B
Smarty
Executable file
11 lines
348 B
Smarty
Executable file
<div class="widget{{if $class}} {{$class}}{{/if}}">
|
|
{{if $title}}<h3>{{$title}}</h3>{{/if}}
|
|
{{if $desc}}<div class="desc">{{$desc}}</div>{{/if}}
|
|
|
|
<ul class="nav nav-pills nav-stacked">
|
|
{{foreach $items as $item}}
|
|
<li><a href="{{$item.url}}" class="{{if $item.selected}}active{{/if}}">{{$item.label}}</a></li>
|
|
{{/foreach}}
|
|
</ul>
|
|
|
|
</div>
|