Smarter title
This commit is contained in:
@ -1,7 +1,35 @@
|
||||
{%- if page.title -%}
|
||||
{{- page.title }} {{ config.extra.title_separator | default(value="-") }} {{ config.title -}}
|
||||
{%- elif section.title -%}
|
||||
{{- section.title }} {{ config.extra.title_separator | default(value="-") }} {{ config.title -}}
|
||||
{# Taken from https://github.com/welpo/tabi/blob/69713c973c11d7646c8fe56476261d96cc1978d8/templates/partials/title.html #}
|
||||
|
||||
{#- Setup -#}
|
||||
{%- set suffix = config.title | safe -%}
|
||||
{%- set custom_separator = config.extra.title_separator | default(value="-") -%}
|
||||
{%- set separator = " " ~ custom_separator ~ " " -%}
|
||||
|
||||
{#- Get the base path for the current language -#}
|
||||
{%- if lang != config.default_language %}
|
||||
{%- set base_path = "/" ~ lang ~ "/" %}
|
||||
{%- else -%}
|
||||
{{- config.title -}}
|
||||
{%- set base_path = "/" %}
|
||||
{%- endif %}
|
||||
|
||||
{%- if current_path and current_path == base_path -%}
|
||||
{%- set prefix = "" -%}
|
||||
{%- set separator = "" -%}
|
||||
{% elif title %}
|
||||
{%- set prefix = title -%}
|
||||
{% elif section.title -%}
|
||||
{%- set prefix = section.title -%}
|
||||
{% elif page.title %}
|
||||
{%- set prefix = page.title -%}
|
||||
{% elif term.name %}
|
||||
{#- Individual tags -#}
|
||||
{%- set prefix = term.name -%}
|
||||
{% elif taxonomy.name %}
|
||||
{#- List of tags -#}
|
||||
{%- set prefix = macros_translate::translate(key=taxonomy.name, language_strings=language_strings) | capitalize -%}
|
||||
{% else %}
|
||||
{%- set prefix = "404" %}
|
||||
{%- endif -%}
|
||||
|
||||
{#- Return the final concatenated string -#}
|
||||
{{- prefix ~ separator ~ suffix -}}
|
||||
|
Reference in New Issue
Block a user