{% extends 'base/base.html' %} {% block content %} {% set board = topic.board %} {{ breadcrumb(hrefs={board.parent_board:url_for('board.board',parent_b=board.parent_board), board.board:url_for('board.board',parent_b=board.parent_board,child_b=board.board)},active=topic.title)}} {% set last_reply = topic.replies.first() %} {% from 'base/paginate.html' import footer as p_footer %}

{{ topic.title}}

{% for tag in topic.tags %} {{ link_base.tag(tag) }} {% endfor %}
{{ link_base.user(topic.author.username )}} 于 {{ topic.publish | timesince }}发布 {% if last_reply %} 最后由{{ link_base.user(last_reply.author.username )}}于 {{ last_reply.publish | timesince }}回复 {% endif %}
{% if topic.is_markdown %} {{ topic.content | markdown }} {% else %} {{ topic.content }} {% endif %}
{% include 'topic/replies.html' %}
{% set ask_url = url_for('topic.ask',boardId=topic.board.id) %} {% include 'topic/panel.html' %}
{% endblock %}