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/generic_links_widget.tpl
2014-10-07 18:11:36 +02:00

12 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>