view toolbox/templates/tags.html @ 0:b0942f44413f

import from git://github.com/mozilla/toolbox.git
author Jeff Hammel <k0scist@gmail.com>
date Sun, 11 May 2014 09:15:35 -0700
parents
children
line wrap: on
line source

<h1 id="title">{{title}}</h1>

<div class="tag">
  <ul>
    {{for tag in tags}}
    <li>
      <a href="./?{{tag['field']}}={{tag['value']}}" title="{{tag['count']}}">
        {{tag['value']}}
      </a>
    </li>
    {{endfor}}
  </ul>
</div>