7 lines
294 B
Text
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 %}
|