Files
v1.pivoine.art/_includes/components/post-list-item.html

8 lines
374 B
HTML
Raw Normal View History

2025-10-25 12:39:30 +02:00
{% assign post = include.post %}
{% assign format = include.format | default:site.data.strings.date_formats.related_post | default:"%d %b %Y" %}
<li class="h4">
<a href="{{ post.url | relative_url }}" class="flip-title"><span>{{ post.title }}</span></a>
<time class="faded fine" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date:format }}</time>
</li>