Last active
April 18, 2020 17:33
-
-
Save TonyArty/c6ad412dc6b97de188a6b7c0b2106317 to your computer and use it in GitHub Desktop.
Related posts Liquid Jekyll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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