]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
Fix tags count in tags list on baggy
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / baggy / Tag / tags.html.twig
CommitLineData
3f3fbef1
NL
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
0d42217e 3{% block title %}{{ 'tag.page_title'|trans }}{% endblock %}
3f3fbef1
NL
4
5{% block content %}
0d42217e 6 <div class="results">
2a007fe4 7 <div class="nb-results">{{ 'tag.list.number_on_the_page'|transchoice(tags|length) }}</div>
0d42217e
JB
8 </div>
9
10 <ul>
11 {% for tag in tags %}
a9b984fe 12 <li id="tag-{{ tag.id|e }}"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a></li>
0d42217e
JB
13 {% endfor %}
14 </ul>
b6520f0b
NL
15
16 <div>
17 <a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }}</a>
18 </div>
3f3fbef1 19{% endblock %}