summaryrefslogtreecommitdiff
path: root/_layouts/home.html
blob: c325bfb0dcafe66799386fb8db1812504f790e9e (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="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
    {% include postmeta.html node=post %}
    {{ post.content | markdownify }}
{% endfor %}

{% include paginate.html %}