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

{% include paginate.html %}