wallabag/themes/baggy/tags.twig

14 lines
537 B
Twig
Raw Normal View History

2014-02-12 15:58:40 -05:00
{% extends "layout.twig" %}
2014-10-30 16:54:24 -04:00
{% block title %}Tags{% endblock %}
2014-02-12 15:58:40 -05:00
{% block menu %}
{% include '_menu.twig' %}
{% endblock %}
{% block content %}
<h2>{% trans "Tags" %}</h2>
<ul class="list-tags">
{% for tag in tags %}<li>{% if token != '' %}<a class="icon icon-rss" href="?feed&amp;type=tag&amp;user_id={{ user_id }}&amp;tag_id={{ tag.id }}&amp;token={{ token }}" target="_blank"><span>rss</span></a>{% endif %} <a href="./?view=tag&amp;id={{ tag.id }}">{{ tag.value }}</a> ({{ tag.entriescount }})
2014-02-12 15:58:40 -05:00
</li>
{% endfor %}
</ul>
2014-10-30 16:54:24 -04:00
{% endblock %}