--- layout: base.njk includePrism: true eleventyComputed: title: "{{ post.title.rendered | safe }}" description: "{{ post.yoast_head_json.description }}" ---

{{ title | safe }}

{{ post.excerpt.rendered | safe }}
{{ content | safe }}

Responses

{% if post.comments.like | length %}

Likes

{% for like in post.comments.like %} {{ like.author.name }} {% endfor %}
{% endif %} {% if post.comments.repost | length %}

Reposts

{% for like in post.comments.repost %} {{ like.author.name }} {% endfor %}
{% endif %} {% if post.comments.reply | length %}

Replies

    {% for reply in post.comments.reply | reverse %} {% endfor %}
{% endif %}