diff options
Diffstat (limited to '')
-rw-r--r-- | _layouts/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/_layouts/index.html b/_layouts/index.html new file mode 100644 index 0000000..5b45898 --- /dev/null +++ b/_layouts/index.html @@ -0,0 +1,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> |