Change .html.twig to .html

Change other file extensions for consistency.
This commit is contained in:
Oliver Davies 2015-06-18 01:41:41 +01:00
parent 49cb968cc1
commit 592f054b36
15 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{% set separator = '|' %}
{% spaceless %}<title>
{% 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 }}
{% endif %}
{% endif %}
</title>{% endspaceless %}