diff --git a/_pages/index.html b/_pages/index.html index 35ee042..2c09cfb 100644 --- a/_pages/index.html +++ b/_pages/index.html @@ -1,20 +1,29 @@ --- layout: page permalink: "index.html" +title: "" --- -{% for post in site.posts %} -
-

- - - | - {{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }} - -

+{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %} -

{{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}

+{% for year in postsByYear %} +
+

{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | slugify }}

+ +
{% endfor %}