Last active
April 25, 2021 02:17
-
-
Save nternetinspired/72e10633036f5f2a734953cc69e157c8 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 %} |
thank you!
line 13 the period got me an error. Liquid is happier with this {% for page in site[name] %}. Cheers!
BEAUTIFUL. THANK YOU
This isn't working for me... See https://github.com/kyleplo/kyleplo.github.io/blob/d029c95/_demos/search-test.html
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Excellent. I was missing that markdownify filter and wondered why my markdown wasn't rendering properly