2018-04-04 00:56:25 +03:00
|
|
|
---
|
2019-03-25 02:10:50 +03:00
|
|
|
layout: page
|
2019-05-03 15:36:26 +03:00
|
|
|
permalink: "index.html"
|
2019-09-03 01:54:00 +03:00
|
|
|
title: ""
|
2018-04-04 00:56:25 +03:00
|
|
|
---
|
|
|
|
|
2019-09-03 01:54:00 +03:00
|
|
|
{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
|
|
|
|
|
|
|
|
{% for year in postsByYear %}
|
2019-05-03 03:02:31 +03:00
|
|
|
<section>
|
2019-09-03 01:54:00 +03:00
|
|
|
<h3>{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | slugify }}</h3>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for post in year.items %}
|
|
|
|
<li>
|
|
|
|
<a href="{{ post.url | relative_url | uri_escape }}">
|
|
|
|
{{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
|
|
|
|
</a>
|
2018-05-15 02:11:27 +03:00
|
|
|
|
2019-09-03 01:54:00 +03:00
|
|
|
<small>
|
|
|
|
<time datetime="{{ post.date | date_to_xmlschema }}">
|
|
|
|
<em>{{ post.date | date: '- %b %d' | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</em>
|
|
|
|
</time>
|
|
|
|
</small>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2019-05-03 03:02:31 +03:00
|
|
|
</section>
|
2018-12-16 17:07:19 +03:00
|
|
|
{% endfor %}
|