From 63ac43a04535d4022d6c50b9b11257d8a1f765d9 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Fri, 28 Mar 2025 15:46:43 +0100 Subject: [PATCH] use h1 on all pages instead of h2 for SEO reasons --- hub/services/templates/pages/about.html | 2 +- hub/services/templates/services/contact_form.html | 2 +- hub/services/templates/services/lead_form.html | 2 +- hub/services/templates/services/offering_detail.html | 6 +++--- hub/services/templates/services/offering_list.html | 2 +- hub/services/templates/services/partner_detail.html | 5 ++++- hub/services/templates/services/partner_list.html | 2 +- hub/services/templates/services/provider_detail.html | 7 +++++-- hub/services/templates/services/provider_list.html | 4 ++-- hub/services/templates/services/service_detail.html | 4 ++-- hub/services/templates/services/service_list.html | 2 +- hub/services/templates/services/thank_you.html | 2 +- 12 files changed, 23 insertions(+), 17 deletions(-) diff --git a/hub/services/templates/pages/about.html b/hub/services/templates/pages/about.html index dbe1aea..707cab9 100644 --- a/hub/services/templates/pages/about.html +++ b/hub/services/templates/pages/about.html @@ -8,7 +8,7 @@
-

About Servala

+

About Servala

Open Cloud Native Service Hub. Unlock the Power of Cloud Native Applications.

diff --git a/hub/services/templates/services/contact_form.html b/hub/services/templates/services/contact_form.html index 172de2c..bc5d32b 100644 --- a/hub/services/templates/services/contact_form.html +++ b/hub/services/templates/services/contact_form.html @@ -7,7 +7,7 @@
-

Contact Us

+

Contact Us

We'd love to hear from you!

diff --git a/hub/services/templates/services/lead_form.html b/hub/services/templates/services/lead_form.html index 5d31f7b..73e0585 100644 --- a/hub/services/templates/services/lead_form.html +++ b/hub/services/templates/services/lead_form.html @@ -10,7 +10,7 @@
-

Inquiry for {{ service.name }}

+

Inquiry for {{ service.name }}

diff --git a/hub/services/templates/services/offering_detail.html b/hub/services/templates/services/offering_detail.html index 563fec3..36c2a4d 100644 --- a/hub/services/templates/services/offering_detail.html +++ b/hub/services/templates/services/offering_detail.html @@ -1,15 +1,15 @@ {% extends 'base.html' %} {% load static %} -{% block title %}{{ offering.service.name }} on {{ offering.cloud_provider.name }}{% endblock %} +{% block title %}Managed {{ offering.service.name }} on {{ offering.cloud_provider.name }}{% endblock %} {% block content %}
-

Service Offering

+

Managed {{ offering.service.name }} on {{ offering.cloud_provider.name }}

-

{{ offering.service.name }} managed by VSHN on {{ offering.cloud_provider.name }}

+

Details about {{ offering.service.name }} managed by VSHN on {{ offering.cloud_provider.name }}

diff --git a/hub/services/templates/services/offering_list.html b/hub/services/templates/services/offering_list.html index 16a11fa..0f138e3 100644 --- a/hub/services/templates/services/offering_list.html +++ b/hub/services/templates/services/offering_list.html @@ -6,7 +6,7 @@
-

Service Offerings

+

Service Offerings

Explore all available Offerings on Servala, with new ones added regularly. These ready-made packages bundle a Service on a Cloud Provider, making them ready for immediate use.

diff --git a/hub/services/templates/services/partner_detail.html b/hub/services/templates/services/partner_detail.html index 9c80c23..866302f 100644 --- a/hub/services/templates/services/partner_detail.html +++ b/hub/services/templates/services/partner_detail.html @@ -7,7 +7,10 @@
-

Consulting Partner

+

{{ partner.name }} on Servala

+
+

About the consulting partner {{ partner.name }} on Servala

+
diff --git a/hub/services/templates/services/partner_list.html b/hub/services/templates/services/partner_list.html index 0af7991..4fc7361 100644 --- a/hub/services/templates/services/partner_list.html +++ b/hub/services/templates/services/partner_list.html @@ -9,7 +9,7 @@
-

Consulting Partners

+

Consulting Partners

Browse our network of expert Consulting Partners on Servala, with new partners added regularly. They'll help you get up to speed and make the most of specific services.

diff --git a/hub/services/templates/services/provider_detail.html b/hub/services/templates/services/provider_detail.html index 2d64770..ade6e12 100644 --- a/hub/services/templates/services/provider_detail.html +++ b/hub/services/templates/services/provider_detail.html @@ -1,13 +1,16 @@ {% extends 'base.html' %} {% load contact_tags %} -{% block title %}Service Provider {{ provider.name }}{% endblock %} +{% block title %}Cloud Provider {{ provider.name }}{% endblock %} {% block content %}
-

Service Provider

+

{{ provider.name }} on Servala

+
+

About the cloud provider {{ provider.name }} on Servala

+
diff --git a/hub/services/templates/services/provider_list.html b/hub/services/templates/services/provider_list.html index aa9fd11..e6f8630 100644 --- a/hub/services/templates/services/provider_list.html +++ b/hub/services/templates/services/provider_list.html @@ -2,14 +2,14 @@ {% load static %} {% load contact_tags %} -{% block title %}Service Providers{% endblock %} +{% block title %}Cloud Providers{% endblock %} {% block meta_description %}Discover cloud providers on Servala offering reliable infrastructure and innovative cloud computing solutions for businesses of all sizes.{% endblock %} {% block content %}
-

Cloud Providers

+

Cloud Providers

Explore all available Cloud Providers on Servala, with new ones added regularly.

diff --git a/hub/services/templates/services/service_detail.html b/hub/services/templates/services/service_detail.html index 2d30bd1..6de1e86 100644 --- a/hub/services/templates/services/service_detail.html +++ b/hub/services/templates/services/service_detail.html @@ -6,9 +6,9 @@
-

Service Details

+

{{ service.name }} on Servala

-

{{ service.name }}

+

Details about the service {{ service.name }} on Servala

diff --git a/hub/services/templates/services/service_list.html b/hub/services/templates/services/service_list.html index 39fa7e9..adbc447 100644 --- a/hub/services/templates/services/service_list.html +++ b/hub/services/templates/services/service_list.html @@ -9,7 +9,7 @@
-

Services

+

Services

Explore all available Services on Servala, with new ones added regularly.

diff --git a/hub/services/templates/services/thank_you.html b/hub/services/templates/services/thank_you.html index b993332..d545425 100644 --- a/hub/services/templates/services/thank_you.html +++ b/hub/services/templates/services/thank_you.html @@ -8,7 +8,7 @@
-

Thank You!

+

Thank You!

Your message has been sent successfully.

We'll get back to you as soon as possible.

Take me home