wallabag/themes/default/tags.twig

8 lines
253 B
Twig
Raw Normal View History

2013-12-06 07:15:06 -05:00
{% extends "layout.twig" %}
{% block title %}tags{% endblock %}
{% block menu %}
{% include '_menu.twig' %}
{% endblock %}
{% block content %}
{% for tag in tags %}<a href="./?view=tag&amp;id={{ tag.id }}">{{ tag.value }}</a> {% endfor %}
2013-12-06 07:15:06 -05:00
{% endblock %}