babble-on/index.markdown_old

19 lines
469 B
Plaintext

---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
---
<h1>All posts</h1>
<hr>
{% for collection in site.collections %}
<p>
{% for item in site[collection.label] %}
<h2><a href="{{ item.url }}">{{ item.title }} </a></h2>
<p class="post-excerpt">{{ item.content | truncate: 200 }}</p>
<hr>
{% endfor %}
</p>
{% endfor %}