]> git.immae.eu Git - github/wallabag/wallabag.git/blame - themes/baggy/tags.twig
Merge pull request #595 from wallabag/dev
[github/wallabag/wallabag.git] / themes / baggy / tags.twig
CommitLineData
943ac3c7
NL
1{% extends "layout.twig" %}
2{% block title %}tags{% endblock %}
3{% block menu %}
4{% include '_menu.twig' %}
5{% endblock %}
6{% block content %}
7<h2>{% trans "Tags" %}</h2>
8<ul class="list-tags">
fb26cc93 9{% for tag in tags %}<li>{% if token != '' %}<a class="icon icon-rss" href="?feed&amp;type=tag&amp;user_id={{ user_id }}&amp;tag_id={{ tag.id }}&amp;token={{ token }}" target="_blank"><span>rss</span></a>{% endif %} <a href="./?view=tag&amp;id={{ tag.id }}">{{ tag.value }}</a> ({{ tag.entriescount }})
943ac3c7
NL
10</li>
11{% endfor %}
12</ul>
13{% endblock %}