1 2 3 4 5 6 7 8 9 10 11 12 13 14
--- layout: default --- {{ content }} {% for post in site.posts limit:5 %} <div class="post"> <h3><a href="{{ post.url }}">{{ post.title }}</a></h3> <span class="post-date">{{ post.date | date: "%B %-d, %Y" }}</span> {{ post.excerpt }} </div> {% endfor %}