From f52e2302b9de4419361b63d738149d5a0bbaa90b Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 8 May 2024 19:24:50 +0200 Subject: [PATCH] feat(web): add dynamic titles to page templates Introduced unique, descriptive titles to the legal, membership, privacy, and terms templates to improve SEO and user navigation. Previously, these pages inherited a generic title from the base template. Now, each page specifies its own title block, enhancing browser tab legibility and potentially boosting page rankings in search engine results. --- templates/legal.html | 4 +++- templates/membership.html | 4 +++- templates/privacy.html | 4 +++- templates/terms.html | 4 +++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/templates/legal.html b/templates/legal.html index 1ba73ce..f661545 100644 --- a/templates/legal.html +++ b/templates/legal.html @@ -1,4 +1,6 @@ -{% extends "base.html" %} {% block content %} +{% extends "base.html" %} +{% block title %}Legal Notice{% endblock %} +{% block content %}
diff --git a/templates/membership.html b/templates/membership.html index e92016c..74a7c0f 100644 --- a/templates/membership.html +++ b/templates/membership.html @@ -1,4 +1,6 @@ -{% extends "base.html" %} {% block content %} +{% extends "base.html" %} +{% block title %}Membership / Donations{% endblock %} +{% block content %}

Membership/Donations

diff --git a/templates/privacy.html b/templates/privacy.html index 9ab1fe7..6fa8c20 100644 --- a/templates/privacy.html +++ b/templates/privacy.html @@ -1,4 +1,6 @@ -{% extends "base.html" %} {% block content %} +{% extends "base.html" %} +{% block title %}Privacy Policy{% endblock %} +{% block content %}

Privacy Policy

diff --git a/templates/terms.html b/templates/terms.html index 45474ac..d70c365 100644 --- a/templates/terms.html +++ b/templates/terms.html @@ -1,4 +1,6 @@ -{% extends "base.html" %} {% block content %} +{% extends "base.html" %} +{% block title %}Terms of Service{% endblock %} +{% block content %}

Terms of Service