{% macro render_post(post, expanded=False) %} {% if expanded %}
{{ post.content | safe }}

{% else %}
{{ post.content | striptags | truncate(200) }}
Read More
{% endif %} {% endmacro %}