1
2
3
4
5
6
7
8
9
10
11
12
13
---
layout: default
blog_index: true
{% assign index = true %}
{% for page in site.posts limit:site.posts_per_page %}
{% assign content = page.content %}
<article>
{% include article.html %}
</article>
{% endfor %}