Forked from nternetinspired/output-articles-by-collection.liquid
Last active
February 8, 2025 22:34
-
-
Save aamnah/dceb067c8bf79d017f1a16523b2c3a75 to your computer and use it in GitHub Desktop.
Loop through Jekyll collections and list their posts
This file contains 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
{% comment %} | |
Loops though every collection you defined in _config.yml and grabs the pages they contain; outputting titles. | |
{% endcomment %} | |
{% for collection in site.collections %} | |
{% assign name = collection.label %} | |
<h1>{{ name }}</h1> | |
{% for post in site.[name] %} | |
<ul> | |
<li><a href="{{ post.url }}">{{ post.title }}</a></li> | |
</ul> | |
{% endfor %} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment