Forked from nternetinspired/output-articles-by-collection.liquid
Created
April 22, 2021 00:15
-
-
Save iamshacky/6d6ec71a70203f2bdebf97d98786bd0d to your computer and use it in GitHub Desktop.
Loop through Jekyll collections and output their content as sections and articles
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 title and full text with good basic html semantics. | |
Use page.excerpt instead of page.content to grab the first paragraph, blog list style. Markdownify is optional, depends how you authored content in your collections; I typically use Markdown. | |
{% endcomment % } | |
{% for collection in site.collections %} | |
{% assign name = collection.label %} | |
<section> | |
<h1>{{ name }}</h1> | |
{% for page in site.[name] %} | |
<article> | |
<h2>{{ page.title }}</h2> | |
<p>{{ page.content | markdownify }}</p> | |
</article> | |
{% endfor %} | |
</section> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment