{% if entry.type == "comment" %}
{% else %}
{{entry.author}}
{{entry.date}}
{% endif %}
{% if entry.title %}
{% endif %}
{% if entry.tags %}
{% for tag in entry.tags %}
- {{tag}}
{% endfor %}
{% endif %}
{{entry.content}}
{% if entry.type == "main_item" %}
{% endif %}
{% if entry.all_comments_link %}
{{ link(entry.all_comments_link) }}
{% endif %}
{% for comment in entry.comments %}
{{ message(comment) }}
{% endfor %}
{%- endmacro %}
{% macro link(entry) -%}