summaryrefslogtreecommitdiffstats
path: root/blog/index.html
blob: 512e009bb369c3d8ebb1cd6584f8bc8f18c44d8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: default
title: titles.home
hidden: true
---

{% tf home/intro.md %}

<section id="news" class="wide">
  <h2>{% t home.latest_news %}</h2>
  {% for p in site.posts limit: 5 %}
    <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 %}
  <a href="{{ '/archive.html' | prepend: site.baseurl }}">{% t home.older_news %}</a>
</section>

{% if site.links %}
  <section id="links">
    <h2>{% t home.links %}</h2>
  </section>
{% endif %}