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

15 lines
404 B
HTML
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-06-14 02:27: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-06-14 02:27:41 +00:00
{% endif %}
</title>{% endspaceless %}