mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 21:31:34 +01:00
13 lines
409 B
HTML
13 lines
409 B
HTML
<div class="text-sm antialiased opacity-60">
|
|
{% if page.date %}
|
|
<time>{{ page.date | date }}</time>
|
|
<span class="mx-1">·</span>
|
|
<span>{{ page.reading_time }}min</span>
|
|
{% endif %}<!---->
|
|
{% set single_author = page.extra.author | default(value=config.author) %}
|
|
<!---->
|
|
{% if single_author %}
|
|
<span class="mx-1">·</span>
|
|
<span>{{ single_author }}</span>
|
|
{% endif %}
|
|
</div>
|