{% assign hasSimilar = '' %}
{% for post in site.posts %}
{% assign postHasSimilar = false %}
{% for tag in post.categories %}
{% for thisTag in page.categories %}
{% if postHasSimilar == false and hasSimilar.size < 6 and post != page and tag == thisTag %}
{% if hasSimilar.size == 0 %}
Related Posts
{% endif %}
{{ post.title }}
{% if post.categories %}
(Categories: {% for category in post.categories %}{{ category }}{% if forloop.last == false %}, {% endif %}{% endfor %})
{% endif %}