summaryrefslogtreecommitdiffstats
path: root/templates/_tags.html
blob: aa22e888b2d83a2be49d7956b6294a7338091e15 (plain)
1
2
3
4
5
6
7
8
    <h2>Tags</h2>
    <ul>
    {% for tag in tags %}
      <li><a href="{{url_for('list', tag=tag[0])}}">{{ tag[0] }}</a></li>
    {% else %}
      <li><strong>no tags yet</strong></li>
    {% endfor %}
    </ul>