summaryrefslogtreecommitdiff
path: root/_layouts/home.html
blob: 81451b6d39677271175805e6e6b96fe926e6bbb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
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>
    {% include postmeta.html node=post %}
    {{ post.content | markdownify }}
{% endfor %}

{% include paginate.html %}