aboutsummaryrefslogblamecommitdiff
path: root/_layouts/index.html
blob: 73b97ef3a0c4df6c791a86d56a51d4e6225ea837 (plain) (tree)
1
2
3
4


               
                                             










                                                                                                                        
---
layout: default
---
<h1>{{ site.t.recent_posts[page.lang] }}</h1>
{% if site.posts.size > 0 %}
  <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>
{% endif %}