summaryrefslogtreecommitdiff
path: root/_includes/index.liquid
blob: b172823b3b4305390df8b0b5043342f20bed2bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="column">
    {% for post in paginator.posts %}

    <h1>
	<a href="{{ site.baseurl }}{{post.url }}">
	    {{ post.title }}
	</a>
    </h1>
    <span>
	{{ post.excerpt }}
    </span>
    {% endfor %}
</div>

{% include pagination.liquid %}