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/_includes/title.twig

14 lines
440 B
Twig
Raw Normal View History

2015-04-12 19:15:50 +00:00
{% spaceless %}<title>
2015-08-20 20:56:18 +00:00
{% if page.full_title %}
{{ page.full_title }}
{% elseif page.title and site.title %}
{{ page.title }} {{ site.title_separator }} {{ site.title }}
{% elseif site.title %}
{% if site.subtitle %}
{{ site.subtitle }} {{ site.title_separator }} {{ site.title }}
{% else %}
{{ site.title }}
{% endif %}
2015-04-12 19:15:50 +00:00
{% endif %}
2015-06-14 02:27:41 +00:00
</title>{% endspaceless %}