{% set long_date = config.system.pages.dateformat.long %}
{% if post.header.image %}
{% endif %}

{% if truncate is defined and truncate is not sameas(true) %}

{{ post.content|raw|truncate_words(truncate) }}

{% elseif truncate is defined and truncate >= 1 %}

{{ post.content|raw|truncate_words(20) }}

{% else %}

{{ post.content|raw }}

{% endif %}