{% macro renderTopicPreview(context) %} {% endmacro %} {% macro renderPost(title, avatar, post_text, post_class, show_title) %}
{% if show_title %} {{ title }} {% endif %}
{% if avatar %}
{%- if avatar is iterable -%}{# iterable array is for phpBB4 #} {% include 'avatar.html' with {avatar_data: avatar} only %} {%- elseif avatar != constant('\\vse\\topicpreview\\core\\display::NO_AVATAR') -%}{# phpBB3 avatar fallback #} {{ avatar }} {%- else -%}{# phpBB3 fallback no avatar #}
{%- endif -%}
{% endif %}
{{ post_text }}
{% endmacro %}