mirror of https://github.com/friendica/friendica
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
437 B
13 lines
437 B
<div id="nets-sidebar" class="widget">
|
|
<h3>{{$title}}</h3>
|
|
<div id="nets-desc">{{$desc}}</div>
|
|
|
|
<ul class="nets-ul">
|
|
<li class="tool {{if $sel_all}}selected{{/if}}"><a href="{{$base}}?nets=all" class="nets-link nets-all">{{$all}}</a>
|
|
{{foreach $nets as $net}}
|
|
<li class="tool {{if $net.selected}}selected{{/if}}"><a href="{{$base}}?f=&nets={{$net.ref}}" class="nets-link">{{$net.name}}</a></li>
|
|
{{/foreach}}
|
|
</ul>
|
|
|
|
</div>
|