diff --git a/songs2slides/__init__.py b/songs2slides/__init__.py index a9ca5f4..e704fa4 100644 --- a/songs2slides/__init__.py +++ b/songs2slides/__init__.py @@ -2,7 +2,8 @@ from dotenv import load_dotenv def error_404(e): - return render_template('error.html', message='404 Not Found'), 404 + return render_template('error.html', message='404 Not Found', + title='Not Found'), 404 def create_app(): app = Flask(__name__) diff --git a/songs2slides/templates/create-step-1.html b/songs2slides/templates/create-step-1.html index ab7ddce..21ee528 100644 --- a/songs2slides/templates/create-step-1.html +++ b/songs2slides/templates/create-step-1.html @@ -1,5 +1,7 @@ {% extends "layout.html" %} +{% set title = 'Create' %} + {% block head %} diff --git a/songs2slides/templates/create-step-2.html b/songs2slides/templates/create-step-2.html index a6155ab..82211ab 100644 --- a/songs2slides/templates/create-step-2.html +++ b/songs2slides/templates/create-step-2.html @@ -1,5 +1,7 @@ {% extends "layout.html" %} +{% set title = 'Create' %} + {% block head %} diff --git a/songs2slides/templates/create-step-3.html b/songs2slides/templates/create-step-3.html index 3589d0f..407bac2 100644 --- a/songs2slides/templates/create-step-3.html +++ b/songs2slides/templates/create-step-3.html @@ -1,5 +1,7 @@ {% extends "layout.html" %} +{% set title = 'Create' %} + {% block head %} diff --git a/songs2slides/templates/layout.html b/songs2slides/templates/layout.html index 6d991ab..cac36a7 100644 --- a/songs2slides/templates/layout.html +++ b/songs2slides/templates/layout.html @@ -3,7 +3,7 @@
-