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

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

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