{% if post["votes"]["up_count"] >= 0 %}

{{ post["votes"]["point"] }}

{% else %}

{{ post["votes"]["point"] }}

{% endif %}

{{ post["body"] | markdown }}

{{ post["username"] }}

Posted {{ post["created_at"] | remove_newline }}

{% if post["children"] %}
{% for comment in post["children"] %}

{{ comment["body"] | markdown }} – {{ comment["username"] }} – {{ comment["created_at"] | remove_newline }}

{% endfor %}
{% endif %}