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