]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig
Add untagged entries
[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
NL
8 </div>
9 <br />
10 <ul class="row data">
11 {% for tag in tags %}
891456ba 12 <li id="tag-{{ tag.id|e }}" class="col l4 m6 s12"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.entries.getValues | length }})</a></li>
e68d9179
NL
13 {% endfor %}
14 </ul>
b6520f0b
NL
15 <div>
16 <a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }}</a>
17 </div>
e68d9179 18{% endblock %}