2018-04-03 21:56:25 +00:00
|
|
|
---
|
2019-03-25 03:10:50 +04:00
|
|
|
layout: page
|
2019-05-03 16:36:26 +04:00
|
|
|
permalink: "index.html"
|
2018-04-03 21:56:25 +00:00
|
|
|
---
|
|
|
|
|
2019-05-03 04:02:31 +04:00
|
|
|
{% for post in site.posts %}
|
|
|
|
<section>
|
|
|
|
<h4>
|
2019-05-03 16:36:26 +04:00
|
|
|
<span>
|
2019-05-03 04:02:31 +04:00
|
|
|
<time datetime="{{ post.date | date_to_xmlschema }}">
|
|
|
|
{{ post.date | date: '%Y-%m-%d' | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
|
|
|
|
</time>
|
2019-05-03 16:36:26 +04:00
|
|
|
</span> | <a href="{{ post.url | relative_url | uri_escape }}">
|
2019-05-03 04:02:31 +04:00
|
|
|
{{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
|
|
|
|
</a>
|
|
|
|
</h4>
|
2018-05-15 03:11:27 +04:00
|
|
|
|
2019-05-03 04:02:31 +04:00
|
|
|
<p>{{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</p>
|
|
|
|
</section>
|
2018-12-16 18:07:19 +04:00
|
|
|
{% endfor %}
|