summaryrefslogtreecommitdiffstats
path: root/templates/index_tags.html
blob: 05c4d1795c2e6f6befbb1a47244d792644d590be (plain)
1
2
3
4
5
6
7
8
<ul class="tags-list">
{% for tag in tags %}
  <li>
    <a href="{{ tag.name }}.html"><span class="icon"><svg><use href="/img/icons.svg#tag"></use></svg></span> <code>{{ tag.name }}</code></a>
    ({{ tag.contents | length }})
  </li>
{% endfor %}
</ul>