diff options
Diffstat (limited to 'blog/index.html')
-rw-r--r-- | blog/index.html | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/blog/index.html b/blog/index.html index f78869c..0ba564b 100644 --- a/blog/index.html +++ b/blog/index.html @@ -1,3 +1,28 @@ --- -layout: homepage +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 %} |