{% extends 'base/base.html' %} {% block content %} {{ breadcrumb(active=_('Following Topics'))}}
{% if not following.items -%} {% include 'follow/none.html' %} {%- else %} {% for topic in following.items %}

{{ 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 %}
{% endfor %} {{ p_footer(following,'mine.follow',kw=dict(type=following_type))}} {%- endif %}
{{ panel_base.follow() }}
{% endblock %}