Skip to content

Instantly share code, notes, and snippets.

@vbmendes
Created April 6, 2010 20:15
Show Gist options
  • Save vbmendes/358051 to your computer and use it in GitHub Desktop.
Save vbmendes/358051 to your computer and use it in GitHub Desktop.
{% extends "base_internas.html" %}
{% load tagging_tags %}
{% block titulo_secao %}Todos os temas{% endblock %}
{ block cont %}
{% tag_cloud_for_model noticias.Noticia as tag_cloud with steps=7 distribution=linear %}
<div id="temas">
<p>
{% for tag in tag_cloud %}
<span class="cloud-size{{ tag.font_size }}"><a href="{% url noticias__listar_tag tag_id=tag.pk %}{{ tag.name|slugify }}/">{{ tag.name }}</a></span>
{% endfor %}
</p>
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment