{% extends theme('layouts/1-column.html') %} {% from theme('macros/paginator.html') import paginator with context %} {% set meta = { 'title': _('%(topic)s reuses', topic=topic.name), 'description': _("%(site)s %(topic)s related reuses", site=config['SITE_TITLE'], topic=topic.name), 'keywords': [_('search'), _('reuses'), _('topic')] + topic.tags, 'robots': 'noindex', } %} {% block breadcrumb %}
  • {{ _('Topics') }}
  • {{ topic.name }}
  • {{ _('Reuses') }}
  • {% endblock %} {% block main_content %}
    {% if reuses %}
      {% for reuse in reuses %} {% include theme('reuse/search-result.html') %} {% endfor %}
    {% endif %}
    {% endblock %}