{% extends theme("base.html") %} {% from theme('macros/breadcrumb.html') import breadcrumb with context %} {% set meta = { 'title': topic.name, 'description': topic.description|mdstrip(60)|forceescape, 'keywords': [_('topic')] + topic.tags, } %} {% set bundle = 'topic' %} {% set body_class = 'topic-display' %} {% block content %} {% cache cache_duration, 'topic-content', topic.id|string, g.lang_code %} {{ breadcrumb(self, toolbar_class='search-toolbar') }} {% block main_content %}{% endblock %} {% block related %} {{ _('Related tags') }} {% for tag in topic.tags %} {{ tag|truncate(14, True) }} {% endfor %} {% endblock %} {% endcache %} {% endblock %}