aboutsummaryrefslogtreecommitdiff
path: root/templates/includes/title.html
blob: 24fca242569649ccfabc8faa975e4e37a6856e88 (plain) (blame)
1
2
3
4
5
6
7
8
9
{% if page.title %}
{% set title = page.title ~ ' | ' ~ config.title %}
{% endif %}

{% if section.title %}
{% set title = section.title ~ ' | ' ~ config.title %}
{% endif %}

<title>{{ title | default(value=config.title) | trim | safe }}</title>