From c84dc22affdfa3c74dfd810250c7d15b66c30794 Mon Sep 17 00:00:00 2001 From: clr-li <111320104+clr-li@users.noreply.github.com> Date: Mon, 19 Feb 2024 10:15:02 -0800 Subject: [PATCH] Fixed title --- templates/base.html | 2 +- templates/login_options.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 %}