{% macro board_body(board) -%} {% import 'base/link.html' as link %}
{{ link.board(board) }}
{{_('Topics:')}} {{ board.topic_count }} {{ _('Posts:')}} {{ board.post_count }}
{% set newest_topic = board.newest_topic %} {% if newest_topic %}
{{ link.topic(newest_topic)}}
{{ _('published by %(author)s',author=link.user(newest_topic.author)) }}
{{ newest_topic.created_at | timesince }}
{% else %} {{_('No Topic')}} {% endif %}
{%- endmacro %}