diff --git a/templates/base.html b/templates/base.html index e2c180de7..4dfd9d157 100644 --- a/templates/base.html +++ b/templates/base.html @@ -7,7 +7,7 @@ - {{ title }} + {% block title %}{{ title }}{% endblock title %} {% block head %}{% endblock head %} diff --git a/templates/login_options.html b/templates/login_options.html index 5e3a5e072..91cfd9254 100644 --- a/templates/login_options.html +++ b/templates/login_options.html @@ -1,7 +1,7 @@ {% extends 'base.html' %} {% block head %} - Login to Gooey.AI + {% block title %}Login to Gooey.AI{% endblock title %} {% endblock %}