blob: 16e5f93fe737b77dad37c170b31803421026cf9b (
plain)
1
2
3
4
5
6
|
{% for post in site.posts | limit: 3 %}
<article>
<h2><a href="{{ post.url }}">{{ post.title }}</a> <small>({{ post.date | date: "%b %-d, %Y" }})</small></h2>
{{ post.excerpt }}
</article>
{% endfor %}
|