{% macro show_comment(comment, options) %}
{% if options.pinned is defined %} {% endif %} {% set creator = comment.creator is defined ? comment.creator : comment.createdBy %} {{ 'by'|trans }}{{ creator }} {{ ', ' ~ 'on'|trans ~ ' ' ~ comment.createdAt|format_date('long') }}
{{ 'Last updated on'|trans ~ ' ' ~ comment.updatedAt|format_datetime('long', 'short') }}
{{ comment.content|chill_markdown_to_html }}
{% endmacro %}