]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/Wallabag/Resources/views/baggy/tags.twig
move templates into resources
[github/wallabag/wallabag.git] / src / Wallabag / Wallabag / Resources / views / baggy / tags.twig
CommitLineData
943ac3c7 1{% extends "layout.twig" %}
a87a1b7d 2{% block title %}Tags{% endblock %}
943ac3c7
NL
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>
a87a1b7d 13{% endblock %}