{% macro avatar(url) %} {% if url %} avatar {% else %}
{% endif %} {% endmacro %} {% macro user_info(name, level, time, floor=None, sub_text_list=None) %}
{{ name }} Lv.{{ level }} · {{ time | format_date }} {% if floor %}· {{ floor }}楼{% endif %} {% if sub_text_list %} {% for text in sub_text_list %} · {{ text }} {% endfor %} {% endif %}
{% endmacro %} {% macro images(image_list, remain_count=0) %} {% if image_list and image_list | length > 0 %}
{% for img in image_list %}
{% if img %} Image {% else %}
图片加载失败
{% endif %} {% if loop.last and remain_count > 0 %}
+{{ remain_count }}
{% endif %}
{% endfor %}
{% endif %} {% endmacro %} {% macro forum_bar(forum_name, forum_icon_url) %}
{% if forum_icon_url %} forum icon {% else %}
{% endif %} {{ forum_name }}吧
{% endmacro %} {% macro content_item(item, is_thread=False, forum_name=None, forum_icon_url=None) %}
{% if forum_name %} {{ forum_bar(forum_name, forum_icon_url) }} {% endif %}
{{ avatar(item.portrait_url) }} {{ user_info(item.nick_name, item.level, item.create_time, item.floor, item.sub_text_list) }}
{% if item.title %}
{{ item.title }}
{% endif %}
{{ item.text }}
{{ images(item.image_url_list, item.remain_image_count) }} {% if item.sub_html_list %} {% for html in item.sub_html_list %}
{{ html | safe }}
{% endfor %} {% endif %} {% if item.comments %}
{% for comment in item.comments %}
{% if comment.portrait_url %} avatar {% else %}
{% endif %}
{{ comment.nick_name }} Lv.{{ comment.level }} · {{ comment.create_time | format_date }}
{{ comment.text }}
{% endfor %}
{% endif %}
{% endmacro %}