{% extends 'base/base.html' %} {% block content %} {{ breadcrumb(active=_('Following Topics'))}}
{{ link_base.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_base.tag(tag)}} {% endfor %}