{% endif %}
{% if share or site.defaults.posts.share %}{% include social-share.html %}{% endif %}
{% include post_pagination.html siblings=siblings %}
{% comment %}
{% if environment == 'production' and site.comments.provider and comments or site.defaults.post.comments %}
{% endcomment %}
{% if site.comments.provider and comments or site.defaults.posts.comments %}
{% include comments.html %}
{% endif %}
{% comment %}{% endcomment %}
{% if id and related and site.related_posts.size > 0 %}
{{ ui-text[site.locale].related_label | default: "You May Also Enjoy" }}
{% for post in site.related_posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
{% comment %}{% endcomment %}
{% elsif id and related %}
{{ ui-text[site.locale].related_label | default: "You May Also Enjoy" }}
{% for post in collections.posts limit:4 %}
{% if post.id == page.id %}
{% continue %}
{% endif %}
{% include archive-single.html type="grid" %}
{% endfor %}