1
Fork 0
blog/index.liquid
2018-01-01 12:04:05 -07:00

19 lines
526 B
Plaintext

title: fnordig.de
layout: default.liquid
data:
route: blog
---
{% assign idx = 0 %}
{% for post in collections.posts.pages %}
{% if idx < 5 %}
<article class="blog-list">
<h3><a href="{{ post.permalink }}">{{ post.title }}</a></h3>
<time pubdate="pubdate">{{ post.published_date | date: "%b %d, %Y" }}</time><br />
<p>{{ post.content | strip_html | truncatewords: 25, '...' }}</p>
</article>
{% endif %}
{% assign idx = idx | plus: 1 %}
{% endfor %}
Looking for more posts? Check out <a href="/posts/">all posts</a>!