aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig
blob: 19754d415d7818a9799ccd750af982e4a99d134a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title "Tags" %}

{% block content %}
    <div class="results clearfix">
        <div class="nb-results left">{% transchoice tags.count %}{0} There is no tag.|{1} There is one tag.|]1,Inf[ There are %count% tags.{% endtranschoice %}</div>
    </div>
    <br />
    <ul class="row data">
    {% for tag in tags %}
        <li id="tag-{{ tag.id|e }}" class="col l4 m6 s12">{{tag.label}} ({{ tag.entries.getValues | length }})</li>
    {% endfor %}
    </ul>
{% endblock %}