Skip to content

Instantly share code, notes, and snippets.

@TonyArty
Last active April 18, 2020 17:33
Show Gist options
  • Select an option

  • Save TonyArty/c6ad412dc6b97de188a6b7c0b2106317 to your computer and use it in GitHub Desktop.

Select an option

Save TonyArty/c6ad412dc6b97de188a6b7c0b2106317 to your computer and use it in GitHub Desktop.
Related posts Liquid Jekyll
<ul>
{% capture related_posts %}{{ page.categories }}{% endcapture %}
{% assign collection = site.categories[related_posts] %}
{% for article in collection limit: 6 %}
{% unless page.url == article.url %}
<li><a href="{{ article.url }}">{{ article.title }}</a></li>
{% endunless %}
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment