blob: 0ba564bcb58ef882b72dfa07c49fcb76df1b24ba (
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
|
---
layout: default
---
{% 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 %}
</section>
{% if site.links %}
<section id="links">
<h2>{% t home.links %}</h2>
</section>
{% endif %}
|