summaryrefslogtreecommitdiffstats
path: root/blog/archive.html
blob: b85122a9f4a160e02ed89b414125408663958d84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
title: titles.all_news
---

<h1>{% t titles.all_news %}</h1>

<section id="news" class="wide">
    {% for p in site.posts %}
    <article>
      <header>
        <date>{{ p.date | date_to_string }}</date>
        <h1>
          <a href="{{ p.url }}">{{ p.title }}</a>
        </h1>
      </header>
      <section>
        {{ p.excerpt }}
      </section>
    </article>
  {% endfor %}
</section>