mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-09-18 15:32:40 +02:00
Add the ability to include page titles in HTML title element
This commit is contained in:
parent
eb82877d3d
commit
cfbcb940be
11 changed files with 68 additions and 3 deletions
17
templates/macros/title.html
Normal file
17
templates/macros/title.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
{% macro title(page_title, main_title) %}
|
||||
{%- if config.extra.page_titles == "combined" -%}
|
||||
{%- if page_title -%}
|
||||
{{ page_title }} | {{ main_title }}
|
||||
{%- else -%}
|
||||
{{ main_title }}
|
||||
{%- endif -%}
|
||||
{%- elif config.extra.page_titles == "page_only" -%}
|
||||
{%- if page_title -%}
|
||||
{{ page_title }}
|
||||
{%- else -%}
|
||||
{{ main_title }}
|
||||
{%- endif -%}
|
||||
{%- else -%}
|
||||
{{ main_title }}
|
||||
{%- endif -%}
|
||||
{% endmacro title %}
|
Loading…
Add table
Add a link
Reference in a new issue