Backport some changes and fixes
Return the separator customization that got lost in some commit Don't blur the nav when it's not visible Don't scale down the article card when clicking on a tag
This commit is contained in:
@ -27,7 +27,7 @@
|
||||
{{ page.date | date(format=date_format, locale=date_locale) -}}
|
||||
</time>
|
||||
{%- if page.updated -%}
|
||||
<span> • </span>
|
||||
<span> {{ config.extra.separator | default(value="•") }} </span>
|
||||
<time datetime="{{ page.updated | date(format=' %+') }}">
|
||||
{{- macros_translate::translate(key="updated", default="Updated on", language_strings=language_strings) }}
|
||||
{{ page.updated | date(format=date_format, locale=date_locale) -}}
|
||||
@ -45,14 +45,14 @@
|
||||
{%- if page.authors -%}
|
||||
<span>{% include "partials/authors.html" -%}</span>
|
||||
{%- if config.extra.show_reading_time -%}
|
||||
<span> • </span>
|
||||
<span> {{ config.extra.separator | default(value="•") }} </span>
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if config.extra.show_reading_time -%}
|
||||
<span>{{ macros_translate::translate(key="minutes_read", number=page.reading_time, default="$NUMBER minute read", language_strings=language_strings) }}</span>
|
||||
{%- if page.taxonomies -%}
|
||||
<span> • </span>
|
||||
<span> {{ config.extra.separator | default(value="•") }} </span>
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
</small>
|
||||
|
Reference in New Issue
Block a user