popov.link/_pages/index.html
Valentin Popov 6d2efada81
Fixed a visual time for list posts
Signed-off-by: Valentin Popov <info@valentineus.link>
2019-05-03 16:36:26 +04:00

21 lines
684 B
HTML

---
layout: page
permalink: "index.html"
---
{% for post in site.posts %}
<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 }}">
{{ 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>
</section>
{% endfor %}