diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-18 18:18:35 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-18 18:18:35 +0200 |
commit | e68d9179a1f7a5e11d417da3cba3e17e275f6a2f (patch) | |
tree | 836cce212af19d998b35caded8148ae6b33b07d9 | |
parent | c3cb46809b54b2f74d00de7330e06be45776e61e (diff) | |
download | wallabag-e68d9179a1f7a5e11d417da3cba3e17e275f6a2f.tar.gz wallabag-e68d9179a1f7a5e11d417da3cba3e17e275f6a2f.tar.zst wallabag-e68d9179a1f7a5e11d417da3cba3e17e275f6a2f.zip |
fix tag view in material theme
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig new file mode 100644 index 00000000..9f92c178 --- /dev/null +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig | |||
@@ -0,0 +1,15 @@ | |||
1 | {% extends "WallabagCoreBundle::layout.html.twig" %} | ||
2 | |||
3 | {% block title "Tags" %} | ||
4 | |||
5 | {% block content %} | ||
6 | <div class="results clearfix"> | ||
7 | <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> | ||
8 | </div> | ||
9 | <br /> | ||
10 | <ul class="row data"> | ||
11 | {% for tag in tags %} | ||
12 | <li id="tag-{{ tag.id|e }}" class="col l4 m6 s12">{{tag.label}}</li> | ||
13 | {% endfor %} | ||
14 | </ul> | ||
15 | {% endblock %} | ||