Files
2026-08-12 12:26:03 -03:00

24 lines
536 B
HTML

---
title: Latest Posts
description: Ocasional thoughts and guides
permalink: /blog/
listing: true
---
{% for post in site.posts %}
<article>
<header>
<p>
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date_to_long_string: "ordinal" }}
</time>
<small>({{ post.language }})</small>
</p>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
<section>
<p>{{ post.excerpt | strip_html }}</p>
</section>
</article>
{% endfor %}