{% extends 'base/base.html' %} {% block content %} {% from 'follow/_macro.html' import nav_title %} {{ breadcrumb(active=_('Following Topics'))}}
{{ link.topic(topic)}}
{% if topic.is_markdown %} {{ topic.content | truncate(100, True) | markdown }} {% else %} {{ topic.content | truncate(100, True) | safe_clean }} {% endif %}
{% for tag in topic.tags %} {{ link.tag(tag)}} {% endfor %}