summaryrefslogblamecommitdiffstats
path: root/blog/archive.html
blob: 5d6af7a7568eb98535e037372995f45da2452fc9 (plain) (tree)




















                                                  
---
layout: default
---

<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>