popov.link/_pages/blog.html

20 lines
561 B
HTML
Raw Normal View History

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