2020-01-23 18:41:44 +03:00
|
|
|
<h2>Posts</h2>
|
|
|
|
|
|
|
|
<ul>
|
2024-02-14 10:38:24 +03:00
|
|
|
{%- for post in site.posts -%}
|
2020-01-23 18:41:44 +03:00
|
|
|
<li>
|
2024-02-14 13:12:06 +03:00
|
|
|
<a href="{{- post.url | relative_url | url_escape -}}">{{- post.title | strip | normalize_whitespace | xml_escape -}}</a>
|
|
|
|
(<time datetime="{{- post.date | date_to_xmlschema | xml_escape -}}">{{- post.date | date: '%d-%m-%Y' | strip | normalize_whitespace | xml_escape -}}</time>)
|
2020-01-23 18:41:44 +03:00
|
|
|
</li>
|
2024-02-14 10:38:24 +03:00
|
|
|
{%- endfor -%}
|
2024-02-14 13:12:06 +03:00
|
|
|
</ul>
|