]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig
fix #2559
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Tag / tags.html.twig
CommitLineData
e68d9179
NL
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
0d42217e 3{% block title %}{{ 'tag.page_title'|trans }}{% endblock %}
e68d9179
NL
4
5{% block content %}
6 <div class="results clearfix">
2a007fe4 7 <div class="nb-results left">{{ 'tag.list.number_on_the_page'|transchoice(tags|length) }}</div>
e68d9179 8 </div>
28bb4890 9
e68d9179 10 <br />
28bb4890
JB
11
12 <div class="row">
13 <ul class="card-tag-labels">
14 {% for tag in tags %}
d99a7c22 15 <li title="{{tag.label}} ({{ tag.nbEntries }})" id="tag-{{ tag.id }}" class="col l2 m2 s5">
28bb4890
JB
16 <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a>
17 </li>
18 {% endfor %}
19 </ul>
20 </div>
21
b6520f0b
NL
22 <div>
23 <a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }}</a>
24 </div>
e68d9179 25{% endblock %}