summaryrefslogtreecommitdiff
path: root/_layouts/home.html
blob: 8cd68e14d2ddd8fd50baa518b6511c7c87aab0c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
layout: default
sidebar: sb_sidebar_news.html
---
<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 %}