crisp-theme/_includes/post_link.njk

5 lines
279 B
Text
Raw Normal View History

2025-04-17 08:57:50 -04:00
<a {%if page.url == post.url %}class="current-page"{% endif %}
href="{{ post.url }}">{{ post.data.title }}</a>
2025-04-16 22:47:29 -04:00
<time datetime="{{ post.date | htmlDateString }}">{{ post.date | htmlDateString }}</time>
{% if post.data.description %}<p>{{ post.data.description }}</p>{% endif %}