From 9d6f4a469eaa6ae340c20a132d8f23a24db0d25b Mon Sep 17 00:00:00 2001 From: Dev Aggarwal Date: Tue, 27 Feb 2024 19:23:16 +0530 Subject: [PATCH] fix meta title for base.html --- templates/base.html | 1 + templates/login_options.html | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/base.html b/templates/base.html index 4dfd9d157..5af87990a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,6 +8,7 @@ {% block title %}{{ title }}{% endblock title %} + {% block head %}{% endblock head %} diff --git a/templates/login_options.html b/templates/login_options.html index abb32220c..4825e7451 100644 --- a/templates/login_options.html +++ b/templates/login_options.html @@ -1,8 +1,9 @@ {% extends 'base.html' %} +{% block title %}Login to Gooey.AI{% endblock title %} + {% block head %} - {% block title %}Login to Gooey.AI{% endblock title %} - + {% endblock %}