1 2 3 4 5 6 7 8 9 | {% load content_tagclouds %} {% get_latest_cloudtag %} {% for tag in content_tagclouds|slice:"5" %} <div style="font-size:{{ tag.cloudsize }}; text-align:left;float:left" > <a href="{{ tag.get_absolute_url }}"> {{ tag.title }}</a>, </div> {% endfor %} |
Comments