{% extends 'base/base.html' %} {% block script %} {{ super()}} {% endblock %} {% block content %} {{ breadcrumb(hrefs={_('All Tags'):url_for('tag.tag')},active=tag.tagname)}}

{{ tag.tagname }}

{% set summary = tag.summary %} {% if summary -%} {{ summary }} {%- endif %}
Rss {% if g.user.is_authenticated %} {% if current_user in tag.followers %} {% else %} {% endif %} {% endif %}
{% from 'topic/topic_list.html' import view as board_view %} {{ board_view(topics,top_topics)}} {{ p_footer(topics, 'tag.tag',kw=dict(tag=tag.tagname))}}
{% from 'tag/panel.html' import tag as tag_panel %} {{ tag_panel(tag) }}
{% endblock %}