mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 15:55:04 +00:00
Fix incorrect home title
This commit is contained in:
parent
15b1716773
commit
97446b3f7a
2 changed files with 5 additions and 3 deletions
|
@ -14,4 +14,4 @@ defaults:
|
||||||
- scope:
|
- scope:
|
||||||
path: _posts
|
path: _posts
|
||||||
values:
|
values:
|
||||||
permalink: 'null'
|
permalink: ''
|
||||||
|
|
|
@ -7,10 +7,12 @@ layout: minify
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>
|
<title>
|
||||||
{% if page.title %}
|
{% if page.title %}
|
||||||
|
{% unless page.url == "/" %}
|
||||||
{{ page.title }} –
|
{{ page.title }} –
|
||||||
|
{% endunless %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ site.title }}
|
{{ site.title }}
|
||||||
{% if page.title == null %}
|
{% if page.title == null or page.url == "/" %}
|
||||||
- Free OP | Anarchy | Creative
|
- Free OP | Anarchy | Creative
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</title>
|
</title>
|
||||||
|
|
Loading…
Reference in a new issue