aboutsummaryrefslogtreecommitdiff
path: root/_layouts/index.html
blob: 3c145d0d1540aaae39f4e5a67610ed6c5b12593d (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
layout: default
---
<h1>{{ site.t.recent_posts[page.lang] }}</h1>
<ul>
  {%- for post in site.posts -%}
    {% if post.lang == page.lang %}
      <li>
        <a href="{{ post.url }}">{{ post.title | escape }}</a> - {{ post.date | date: site.t.date_format[page.lang] }}
      </li>
    {% endif %}
  {%- endfor -%}
</ul>