Updated list of posts

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2019-09-03 02:54:00 +04:00
parent f8d7ad4c48
commit c204a254c0
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

View File

@ -1,20 +1,29 @@
---
layout: page
permalink: "index.html"
title: ""
---
{% for post in site.posts %}
{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
{% for year in postsByYear %}
<section>
<h4>
<span>
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date: '%Y-%m-%d' | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
</time>
</span> | <a href="{{ post.url | relative_url | uri_escape }}">
<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>
</h4>
<p>{{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</p>
<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>
</section>
{% endfor %}