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.
This commit is contained in:
parent
0000c4e892
commit
f52e2302b9
4 changed files with 12 additions and 4 deletions
|
@ -1,4 +1,6 @@
|
||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %}
|
||||||
|
{% block title %}Legal Notice{% endblock %}
|
||||||
|
{% block content %}
|
||||||
<section class="bg-primary-gradient">
|
<section class="bg-primary-gradient">
|
||||||
<div class="container py-5">
|
<div class="container py-5">
|
||||||
<div class="row align-items-center">
|
<div class="row align-items-center">
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %}
|
||||||
|
{% block title %}Membership / Donations{% endblock %}
|
||||||
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Membership/Donations</h1>
|
<h1>Membership/Donations</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %}
|
||||||
|
{% block title %}Privacy Policy{% endblock %}
|
||||||
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Privacy Policy</h1>
|
<h1>Privacy Policy</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %}
|
||||||
|
{% block title %}Terms of Service{% endblock %}
|
||||||
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Terms of Service</h1>
|
<h1>Terms of Service</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in a new issue