notmuch/devel/notmuch-web/templates/index.html

10 lines
198 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<h2>Common tags</h2>
<ul>
{% for tag in tags %}
<li><a href="search/tag:{{ tag|url }}">{{ tag|e }}</a></li>
{% endfor %}
</ul>
{% endblock content %}