Skip to content

Commit

Permalink
fix meta title for base.html
Browse files Browse the repository at this point in the history
  • Loading branch information
devxpy committed Feb 27, 2024
1 parent 475d9a7 commit c4dfc0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>{% block title %}{{ title }}{% endblock title %}</title>
<meta name="title" content="{{ self.title() }}">

{% block head %}{% endblock head %}

Expand Down
5 changes: 3 additions & 2 deletions templates/login_options.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{% extends 'base.html' %}

{% block title %}Login to Gooey.AI{% endblock title %}

{% block head %}
<title>{% block title %}Login to Gooey.AI{% endblock title %}</title>
<meta name="description" content="Sign in for incredible Open source, shared AI workflows." />
<meta name="description" content="Sign in for incredible Open source, shared AI workflows."/>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/6.0.2/firebase-ui-auth.css"/>
{% endblock %}

Expand Down

0 comments on commit c4dfc0c

Please sign in to comment.