mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 18:01:35 +01:00
16 lines
493 B
HTML
16 lines
493 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 %}<!---->
|
|
{% if page.authors | length > 0 %}<!---->
|
|
{% set author = page.authors | join(sep=", ") %}<!---->
|
|
{% else %}<!---->
|
|
{% set author = config.author %}<!---->
|
|
{% endif %}<!---->
|
|
{% if author %}
|
|
<span class="mx-1">·</span>
|
|
<span>{{ author }}</span>
|
|
{% endif %}
|
|
</div>
|