{% if 'subtitle' in site.settings and site.settings.subtitle %}
{{ site.settings.subtitle }}
{% endif %}
{% if site.settings.header_links %}
{% for link, text in site.settings.header_links %}
- {{ text }}
{% endfor %}
{#
TODO: This will kick in if there's any non-empty value for the
search_enabled setting. Fix it to only allow boolean values.
#}
{% if 'search_enabled' in site.settings and site.settings.search_enabled %}
-
{% endif %}
{% endif %}