blob: b79b02764fbe9f26fb6470c0141cfa20cf5d71fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
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.content }}
{% endfor %}
{% include paginate.html %}
|