Files
website-hadow.fr/blog.html
2025-12-17 21:44:42 +01:00

29 lines
768 B
HTML

---
layout: default
title: Blog
---
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<h2 style="margin-bottom: 0.6em;">
<a href="{{ post.url }}">{{ post.title }}</a>
<span style="font-size: 0.6em; font-style: italic; margin-left: 0.5rem;">
{{ post.date | date: "%B %d, %Y" }}
</span>
</h2>
<span style="display: block; font-size: 0.8em; font-style: italic; margin-bottom: 0.6em;">
{%- if post.tags -%}
{% for tag in post.tags %}
<a href="{{ site.baseurl }}/archive.html#{{ tag | slugify }}">
#{{ tag }}
</a>
{% endfor %}
{%- endif -%}
</span>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>