kita/templates/partials/page_info.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">&middot;</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">&middot;</span>
<span>{{ author }}</span>
{% endif %}
</div>