1
0
Fork 0

Merge pull request #3966 from rabuzarus/20171122_-_port_tagcloud

A tag cloud widget for the profile page
This commit is contained in:
Hypolite Petovan 2017-11-26 11:16:14 -05:00 committed by GitHub
commit 3fbf2e3bcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 242 additions and 2 deletions

View file

@ -0,0 +1,13 @@
<div class="tagblock widget">
<h3>{{$title}}</h3>
<div class="tag-cloud">
{{foreach $tags as $tag}}
<span class="tags">
<span class="tag{{$tag.level}}">#</span><a href="{{$tag.url}}" class="tag{{$tag.level}}">{{$tag.name}}</a>
</span>
{{/foreach}}
</div>
<div class="tagblock-widget-end clear"></div>
</div>