{% extends 'layout.html' %} {% from 'kb/_boxes.html' import render_topics, render_topic_tabs %} {% set page_title = _('Questions Tagged ā€œ%sā€') % tag.name|e %} {% set page_navigation_item = 'kb.tags' %} {% block html_head %} {{ super() }} {%- endblock %} {% block body %}

{{ page_title }}

{% trans tag='%s' % (url_for(tag), tag.name|e)-%} Questions are grouped and flagged by tags. By using the right tags you make it easier for others to find questions again. The following topics are topics tagged {{ tag }}. {%- endtrans %}

{{ render_topic_tabs('kb.by_tag', order_by, {'name': tag.name}) }} {{ render_topics(topics) }} {{ pagination }} {% endblock %}