crisp-theme/_includes/post_link.njk
2025-04-16 22:47:29 -04:00

7 lines
294 B
Text

{% if page.url != post.url %}
<a href="{{ post.url }}">{{ post.data.title }}</a>
{% else %}
{{ post.data.title }}
{% endif %} -
<time datetime="{{ post.date | htmlDateString }}">{{ post.date | htmlDateString }}</time>
{% if post.data.description %}<p>{{ post.data.description }}</p>{% endif %}