{% if site.data.comments[page.slug] or page.comments != false %}

{{ site.comments.title }}

{% if site.data.comments[page.slug] %}
    {% assign comments = site.data.comments[page.slug] | sort: date %} {% for comment_object in site.data.comments[page.slug] %} {% assign comment = comment_object | last %}
  1. {% if comment.website %} {% else %} {{ comment.name }} {% endif %}
    {{ comment.message | markdownify }}
  2. {% endfor %}
{% endif %} {% include post/comment-form.html %}
{% endif %}