/kai/templates/snippets/tagcloud.mako
https://bitbucket.org/bbangert/kai/ · Mako · 9 lines · 8 code · 1 blank · 0 comment · 3 complexity · c99ebe148ba19158321e78ef0ecfe4d7 MD5 · raw file
- <h1>${_('All Tags')}</h1>
- <div class="tagcloud">
- % for tag in c.tag_sizes:
- <span style="font-size: ${tag[2] * 1.3}px;">${h.link_to(tag[0], url=url('snippet_tag', tag=tag[0]))}</span>
- % endfor
- </div>
- <%def name="title()">${parent.title()} - ${_('All Tags')}</%def>
- <%inherit file="layout.mako" />