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

{% if section.title %}
{% set title = section.title %}
{% endif %}

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