]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig
Notifications
[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 %}
378aaefb 6 {{ parent() }}
e68d9179 7 <div class="results clearfix">
2a007fe4 8 <div class="nb-results left">{{ 'tag.list.number_on_the_page'|transchoice(tags|length) }}</div>
e68d9179 9 </div>
28bb4890 10
e68d9179 11 <br />
28bb4890
JB
12
13 <div class="row">
14 <ul class="card-tag-labels">
15 {% for tag in tags %}
d99a7c22 16 <li title="{{tag.label}} ({{ tag.nbEntries }})" id="tag-{{ tag.id }}" class="col l2 m2 s5">
28bb4890 17 <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a>
8c598094 18 {% if app.user.config.rssToken %}
bd40f1af 19 <a rel="alternate" type="application/rss+xml" href="{{ path('tag_rss', {'username': app.user.username, 'token': app.user.config.rssToken, 'slug': tag.slug}) }}" class="right"><i class="material-icons">rss_feed</i></a>
8c598094 20 {% endif %}
28bb4890
JB
21 </li>
22 {% endfor %}
23 </ul>
24 </div>
25
b6520f0b
NL
26 <div>
27 <a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }}</a>
28 </div>
e68d9179 29{% endblock %}