{% import 'base/link.html' as link %} {% macro votes(topic) -%}
{% if topic.vote and topic.vote > 0 -%} {{ vote_a('up',topic.vote) }} {% else %} {{ vote_a('up') }} {%- endif %} {% if topic.vote and topic.vote < 0 %} {{ vote_a('down',topic.vote) }} {% else %} {{ vote_a('down') }} {%- endif %}
{%- endmacro %} {% macro vote_a(vo,count=None) -%} {% if count -%} {{ count }} {% else %} {%- endif %} {%- endmacro %} {% macro title(topic) -%} {% set author = topic.author %}

{{ topic.title }}

{{ votes(topic) }} {% for tag in topic.tags %} {{ link.tag(tag) }} {% endfor %} {% set last_reply = topic.replies.first() %} {{ topic.author.username }} {{ _('published at %(time)s',time = topic.created_at | timesince ) }} {% if last_reply %} ยท {{ _('The last reply published by %(author)s at %(time)s',author=link.user(last_reply.author.username),time=last_reply.created_at | timesince)}} {% endif %}
{%- endmacro %} {% macro body(topic) -%}
{% if topic.is_markdown %} {{ topic.content | markdown }} {% else %} {{ topic.content | safe_clean }} {% endif %}
{%- endmacro %}