Files
popov.link/_pages/index.html
T

34 lines
1.1 KiB
HTML
Raw Normal View History

2018-04-03 21:56:25 +00:00
---
2019-03-25 03:10:50 +04:00
title: "Posts list"
2018-12-16 18:07:19 +04:00
permalink: "index.html"
2019-03-25 03:10:50 +04:00
layout: page
show: false
2018-04-03 21:56:25 +00:00
---
2018-04-23 01:30:25 +04:00
{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
{% for year in postsByYear %}
2018-12-16 18:07:19 +04:00
<section>
<!-- Header -->
<h3>{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | slugify }}</h3>
2018-05-15 03:11:27 +04:00
2018-12-16 18:07:19 +04:00
<ul>
{% for post in year.items %}
<li>
<!-- Title / Link -->
<a href="{{ post.url | relative_url | uri_escape }}">
{{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
</a>
2018-04-23 01:30:25 +04:00
2018-12-16 18:07:19 +04:00
<small>
<!-- Date of publication -->
<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>
</section>
{% endfor %}