{% for tag in tags_by_post[post.id] %}
{{tag['name']}}
{% endfor %}
{% if post.content_type == "text/html" %}
{{ post.text | safe }}
{% elif post.content_type == "text/markdown" %}
{{post.text | markdown}}
{% else %}
{{post.text}}{% endif %}