{% if page.title %}
{% set title = page.title %}
{% elif section.title %}
{% set title = section.title %}
{% else %}
{% set title = config.title %}
{% endif %}
{{ title }}
{% if page.description %}
{% set description = page.description %}
{% elif section.description %}
{% set description = section.description %}
{% else %}
{% set description = config.description %}
{% endif %}