blob: 03b6b9c17e3f7f54db8115c13ae3cb45d86c1ebe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
layout: default
title: Octopress
---
{% for page in site.posts limit:3 %}
{% assign content = page.content %}
{% assign index = true %}
<article>
{% include article.html %}
</article>
{% endfor %}
|