Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2018-07-23 23:25:43 +0300
committerStefan Giehl <stefan@piwik.org>2018-07-23 23:25:43 +0300
commitbf62f58aa63b22e65095f7901df991ea99fb1849 (patch)
treef0b97e5b0685446cbf2085162df7c7bf23f8ff79 /plugins/Morpheus
parent3900cb388592d9fdf0bb40fc38723d2a66c5e667 (diff)
Fix too much whitespace in title (#13197)
* Fix too much whitespace in title In login screen, the title may contain too much whitespace. * Update layout.twig
Diffstat (limited to 'plugins/Morpheus')
-rw-r--r--plugins/Morpheus/templates/layout.twig6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Morpheus/templates/layout.twig b/plugins/Morpheus/templates/layout.twig
index f20eb7673f..e423daed60 100644
--- a/plugins/Morpheus/templates/layout.twig
+++ b/plugins/Morpheus/templates/layout.twig
@@ -4,9 +4,9 @@
{% block head %}
<meta charset="utf-8">
<title>
- {%- block pageTitle -%}
- {%- if title is defined %}{{ title }} - {% endif %}
- {%- if categoryTitle is defined %}{{ categoryTitle }} - {% endif %}
+ {%- block pageTitle %}
+ {%- if title is defined -%}{{ title }} - {% endif -%}
+ {%- if categoryTitle is defined -%}{{ categoryTitle }} - {% endif -%}
Matomo
{%- endblock -%}
</title>