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