summaryrefslogtreecommitdiff
path: root/_layouts/home.html
blob: 9a2976a8b99511f467a951241518d8913fccb691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
layout: default
---

<h1>News{% if paginator.page > 1 %} Archive{% endif %}</h1>

{% for post in paginator.posts %}
    <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
    {{ post.content | markdownify }}
{% endfor %}

{% include paginate.html %}