{% import 'base/link.html' as link %} {% macro form() -%}
{{ _('Choice:') }} {{ g.sort_form.within() }} {{ _('Order:') }} {{ g.sort_form.orderby() }} {{ g.sort_form.desc() }}
{%- endmacro %} {% macro body(topic) -%}
{{ body_header(topic) }} {{ body_title(topic) }} {{ body_read(topic) }} {{ body_reply(topic) }}
{%- endmacro %} {% macro body_header(topic) -%} {% set author = topic.author %} {% set tags = topic.tags %}
{{ link.user_avatar(author) }}
{% if topic.is_top %}   {% endif %} {{ topic.title }}
由{{ link.user(author) }} {{ topic.created_at | timesince }}发布
{%- endmacro %} {% macro body_title(topic) -%} {%- endmacro %} {% macro body_read(topic) -%} {%- endmacro %} {% macro body_reply(topic) -%} {%- endmacro %} {% macro no_topics() -%}
{{ _('No Topic')}}
{%- endmacro %}