]> git.mxchange.org Git - friendica.git/blob - view/templates/widget/trending_tags.tpl
Merge pull request #7720 from MrPetovan/task/4090-move-delegate-to-src
[friendica.git] / view / templates / widget / trending_tags.tpl
1 <div id="trending-tags-sidebar" class="widget">
2         <h3>{{$title}}</h3>
3         <ul>
4 {{section name=ol loop=$tags max=10}}
5                 <li><a href="search?tag={{$tags[ol].term}}">#{{$tags[ol].term}}</a></li>
6 {{/section}}
7         </ul>
8 {{if $tags|count > 10}}
9         <details>
10                 <summary>{{$more}}</summary>
11                 <ul>
12         {{section name=ul loop=$tags start=10}}
13                         <li><a href="search?tag={{$tags[ul].term}}">#{{$tags[ul].term}}</a></li>
14         {{/section}}
15                 </ul>
16         </details>
17 {{/if}}
18 </div>