crisp-theme/_includes/post_link.njk

9 lines
356 B
Text
Raw Normal View History

2025-04-18 11:28:28 -04:00
<li class="post-link">
<a {%if page.url == post.url %}class="current-page"{% endif %}
href="{{ post.url }}">{{ post.data.title }}</a>
2025-04-18 12:17:38 -04:00
<div class="about">
{% if post.data.description %}<p>{{ post.data.description }}</p>{% endif %}
<p><time datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate }}</time></p>
</div>
2025-04-18 11:28:28 -04:00
</li>