2018-04-04 00:56:25 +03:00
|
|
|
---
|
2018-04-11 03:19:47 +03:00
|
|
|
permalink: "index.html"
|
2018-04-18 02:45:55 +03:00
|
|
|
layout: page
|
2018-04-04 00:56:25 +03:00
|
|
|
---
|
|
|
|
|
2018-04-23 00:30:25 +03:00
|
|
|
{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
|
|
|
|
|
2018-04-24 19:00:04 +03:00
|
|
|
<!-- Links to external resources -->
|
2018-04-24 19:14:39 +03:00
|
|
|
{% include external_links.html %}
|
2018-04-23 00:30:25 +03:00
|
|
|
|
|
|
|
{% for year in postsByYear %}
|
|
|
|
<h2>{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | slugify }}</h2>
|
|
|
|
|
|
|
|
{% for post in year.items %}
|
|
|
|
<div class="post-item">
|
|
|
|
<small><time datetime="{{ post.date | date_to_xmlschema}}">{{ post.date | date_to_long_string }}</time></small>
|
|
|
|
<h4>
|
2018-04-25 01:15:04 +03:00
|
|
|
<a href="{{ post.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
|
|
|
|
{{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
|
2018-04-23 00:30:25 +03:00
|
|
|
</a>
|
|
|
|
</h4>
|
|
|
|
|
2018-04-25 01:15:04 +03:00
|
|
|
<p>{{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | truncatewords: 32 | xml_escape }}</p>
|
2018-04-23 00:30:25 +03:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2018-04-18 02:45:55 +03:00
|
|
|
{% endfor %}
|