diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2015-08-19 12:02:24 +0200 |
---|---|---|
committer | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2015-08-19 12:02:24 +0200 |
commit | b71ebd9af90458a4631e987676e3ee3d84c16f9e (patch) | |
tree | 8a08dbf271f7de750e750d32af30d4e9be2fd39d /src/Wallabag | |
parent | 22ed64522a2bbf54662e0acc6b8a88fbe70bc143 (diff) | |
parent | e68d9179a1f7a5e11d417da3cba3e17e275f6a2f (diff) | |
download | wallabag-b71ebd9af90458a4631e987676e3ee3d84c16f9e.tar.gz wallabag-b71ebd9af90458a4631e987676e3ee3d84c16f9e.tar.zst wallabag-b71ebd9af90458a4631e987676e3ee3d84c16f9e.zip |
Merge pull request #1366 from wallabag/fix-tags-view
fix tag view in material theme
Diffstat (limited to 'src/Wallabag')
-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 %} | ||