aboutsummaryrefslogtreecommitdiff
path: root/_layouts/index.html
blob: 5b458981cdcc8d3ab40c791f319785e9df66ac16 (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: "%b %-d, %Y" }}
      </li>
    {% endif %}
  {%- endfor -%}
</ul>