wallabag/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig

19 lines
676 B
Twig
Raw Normal View History

2015-08-18 16:18:35 +00:00
{% extends "WallabagCoreBundle::layout.html.twig" %}
{% block title %}{{ 'tag.page_title'|trans }}{% endblock %}
2015-08-18 16:18:35 +00:00
{% block content %}
<div class="results clearfix">
<div class="nb-results left">{{ 'tag.list.number_on_the_page'|transchoice(tags|length) }}</div>
2015-08-18 16:18:35 +00:00
</div>
<br />
<ul class="row data">
{% for tag in tags %}
2016-04-14 13:03:22 +00:00
<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>
2015-08-18 16:18:35 +00:00
{% endfor %}
</ul>
2016-08-26 14:55:41 +00:00
<div>
<a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }}</a>
</div>
2015-08-18 16:18:35 +00:00
{% endblock %}