{% assign maxRelated = 3 %} {% assign minCommonTags = 1 %} {% assign maxRelatedCounter = 0 %} {% for post in site.posts %} {% assign sameTagCount = 0 %} {% assign commonTags = '' %} {% for tag in post.tags %} {% if post.url != page.url %} {% if page.tags contains tag %} {% assign sameTagCount = sameTagCount | plus: 1 %} {% endif %} {% endif %} {% endfor %} {% if sameTagCount >= minCommonTags %} {% assign related = 'is-related' %} {% endif %} {% endfor %}