blob: 47324392989b81291e304839e462dc18617419e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
layout: default
---
<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.html %}
|