popov.link/_pages/blog.html

16 lines
479 B
HTML
Raw Normal View History

2024-02-14 03:38:59 +04:00
---
layout: page
2024-02-14 14:20:27 +04:00
permalink: /blog/index.html
2024-02-14 03:38:59 +04:00
---
2024-02-14 21:23:17 +04:00
<h1>Latest posts</h1>
2024-02-14 03:38:59 +04:00
2024-02-14 21:23:17 +04:00
<ul>
{%- for post in site.posts -%}
<li>
<time datetime="{{- post.date | date_to_xmlschema | xml_escape -}}">{{- post.date | date: '%Y/%m/%d' | strip | normalize_whitespace | xml_escape -}}</time>
<span>&mdash;</span>
<a href="{{- post.url | relative_url | url_escape -}}">{{- post.title | strip | normalize_whitespace | xml_escape -}}</a>
</li>
{%- endfor -%}
</ul>