You are here: Browse Railsplugins Mephisto Tag Cloud
So basically, you just do this in your layout:
{% if site.tags.size > 0 %}
Tags
{% for tag in site.tags %}
{{ tag | size_tag }}
{% endfor %}
{% endif %}
Or some other rendition. The important part is this:
{% for tag in site.tags %}
{{ tag | size_tag }}
{% endfor %}
As long as you’ve got that under control, everything is cool.
NOTE: This description has been extracted from the Plugin README and so the formatting may need updating to make browser friendly