/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

  1. <h1>${_('All Tags')}</h1>
  2. <div class="tagcloud">
  3. % for tag in c.tag_sizes:
  4. <span style="font-size: ${tag[2] * 1.3}px;">${h.link_to(tag[0], url=url('snippet_tag', tag=tag[0]))}</span>
  5. % endfor
  6. </div>
  7. <%def name="title()">${parent.title()} - ${_('All Tags')}</%def>
  8. <%inherit file="layout.mako" />