feat: use custom separator from config in meta & title

This commit is contained in:
welpo
2023-02-22 23:56:34 +01:00
parent ba0631b4e0
commit aa00640e96
3 changed files with 10 additions and 4 deletions

View File

@@ -2,7 +2,8 @@
{# Setup. #}
{% set prefix = config.title | safe %}
{% set separator = " • " %}
{% set custom_separator = config.extra.separator | default(value="•") %}
{% set separator = " " ~ custom_separator ~ " " %}
{% if current_path and current_path == "/" %}
{% set suffix = "" %}