This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_partials/title.html.twig

14 lines
403 B
Twig
Raw Normal View History

2015-04-12 19:36:05 +00:00
{% set separator = '|' %}
2015-04-12 19:15:50 +00:00
{% spaceless %}<title>
2015-05-16 04:08:41 +00:00
{% if page.full_title %}
{{ page.full_title }}
{% elseif page.title and site.title %}
{{ page.title }} {{ separator }} {{ site.title }}
{% elseif site.title %}
{% if site.subtitle %}
{{ site.subtitle }} {{ separator }} {{ site.title }}
{% else %}
{{ site.title }}
2015-04-12 19:15:50 +00:00
{% endif %}
2015-05-16 04:08:41 +00:00
{% endif %}
2015-04-12 19:15:50 +00:00
</title>{% endspaceless %}