]> git.immae.eu Git - github/wallabag/wallabag.git/blame - themes/courgette/tags.twig
Merge pull request #595 from wallabag/dev
[github/wallabag/wallabag.git] / themes / courgette / tags.twig
CommitLineData
c8265d95
TL
1{% extends "layout.twig" %}
2{% block title %}tags{% endblock %}
3{% block menu %}
4{% include '_menu.twig' %}
5{% endblock %}
6{% block content %}
08718c01 7{% for tag in tags %}<a class="tag" href="./?view=tag&amp;id={{ tag.id }}">{{ tag.value }}</a> {% if token != '' %}<a href="?feed&amp;type=tag&amp;user_id={{ user_id }}&amp;tag_id={{ tag.id }}&amp;token={{ token }}" target="_blank"><img src="{{ poche_url }}themes/{{ theme }}/img/{{ theme }}/rss.png" /></a>{% endif %} {% endfor %}
c8265d95 8{% endblock %}