blob: d2c4d0fa7f304e4e328286b7a55edc8b75c84ff6 (
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="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
{% include postmeta.html node=post %}
{{ post.excerpt }}{%
if post.excerpt != post.content %}<p><a href="{{ site.baseurl }}{{ post.url }}">Read more...</a> the Irssi Team.</p>{%
endif %}
{% endfor %}
{% include paginate.html %}
|